mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
304ec0f113
Signed-off-by: main <magic_rb@redalder.org>
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";
|
|
};
|
|
}
|