about summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/home.nix7
-rw-r--r--home/machines/chupacabra.nix7
2 files changed, 9 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;
-  };
 }
diff --git a/home/machines/chupacabra.nix b/home/machines/chupacabra.nix
new file mode 100644
index 0000000000..714348e3f1
--- /dev/null
+++ b/home/machines/chupacabra.nix
@@ -0,0 +1,7 @@
+{ ... }:
+{
+  system.machine = {
+    wirelessInterface = "wlp59s0";
+    i3FontSize = 9;
+  };
+}