about summary refs log tree commit diff
path: root/home/home.nix
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2020-03-29T16·51-0400
committerGriffin Smith <root@gws.fyi>2020-03-29T16·52-0400
commit6ae7133781e13b86f6d0a7f6eb1edba76c3b6457 (patch)
tree1539a968f8b2ed3a14e2d73845b849651b329d70 /home/home.nix
parent81628a9c399be6747c6c702a54fed7ed95266e7a (diff)
chupacabra home machine config
Diffstat (limited to 'home/home.nix')
-rw-r--r--home/home.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/home/home.nix b/home/home.nix
index 402456e8a4..f6b2d81b60 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;
-  };
 }