diff options
Diffstat (limited to 'home/home.nix')
-rw-r--r-- | home/home.nix | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/home/home.nix b/home/home.nix index 402456e8a4a5..f6b2d81b6048 100644 --- a/home/home.nix +++ b/home/home.nix @@ -1,5 +1,6 @@ { config, pkgs, ... }: +let machine = ./machines/chupacabra.nix; in { imports = [ ./modules/alacritty.nix @@ -11,6 +12,7 @@ ./modules/alsi.nix ./modules/lib/cloneRepo.nix + machine ]; # Let Home Manager install and manage itself. @@ -98,9 +100,4 @@ "text/html" = [ "firefox.desktop" ]; }; }; - }; - - services.gpg-agent = { - enable = true; - }; } |