dotfiles/nix/systems/blowhole.nix
Magic_RB abf5e039a5
Revise inputs and shrink emacs closure
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:25:05 +02:00

26 lines
479 B
Nix

inputs: {
system = "x86_64-linux";
username = "main";
homeDirectory = "/home/main";
configuration =
{ pkgs, ... }: {
home.stateVersion = "20.09";
magic_rb = {
pins = inputs;
overlays = inputs.self.overlays;
programs = {
bash = {
enable = true;
enableDirenv = true;
};
ssh.enable = true;
};
};
imports = [ ../home-manager/modules/default.nix ];
};
}