mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
26 lines
480 B
Nix
26 lines
480 B
Nix
|
inputs: {
|
||
|
system = "x86_64-linux";
|
||
|
username = "riso";
|
||
|
homeDirectory = "/home/riso";
|
||
|
|
||
|
configuration =
|
||
|
{ pkgs, ... }: {
|
||
|
magic_rb = {
|
||
|
pins = inputs;
|
||
|
overlays = inputs.self.overlays;
|
||
|
|
||
|
programs = {
|
||
|
bash.enable = true;
|
||
|
emacs = {
|
||
|
enable = true;
|
||
|
enableMu4e = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
imports = [ ../home-manager/modules/default.nix ];
|
||
|
|
||
|
home.stateVersion = "20.09";
|
||
|
};
|
||
|
}
|