mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 18:46:13 +01:00
22 lines
400 B
Nix
22 lines
400 B
Nix
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom }:
|
||
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
home.packages = with custom; [
|
||
|
emacs
|
||
|
] ++ (with nixpkgs; [
|
||
|
fira-code
|
||
|
]);
|
||
|
|
||
|
home.file = {
|
||
|
".emacs".source = ./.emacs;
|
||
|
".emacs.d/org" = {
|
||
|
source = ./.emacs.d/org;
|
||
|
recursive = true;
|
||
|
};
|
||
|
".emacs.d/lisp" = {
|
||
|
source = ./.emacs.d/lisp;
|
||
|
recursive = true;
|
||
|
};
|
||
|
};
|
||
|
}
|