diff options
author | Griffin Smith <root@gws.fyi> | 2020-03-29T16·51-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-03-29T16·52-0400 |
commit | 6ae7133781e13b86f6d0a7f6eb1edba76c3b6457 (patch) | |
tree | 1539a968f8b2ed3a14e2d73845b849651b329d70 | |
parent | 81628a9c399be6747c6c702a54fed7ed95266e7a (diff) |
chupacabra home machine config
-rw-r--r-- | home/home.nix | 7 | ||||
-rw-r--r-- | home/machines/chupacabra.nix | 7 |
2 files changed, 9 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; - }; } diff --git a/home/machines/chupacabra.nix b/home/machines/chupacabra.nix new file mode 100644 index 000000000000..714348e3f174 --- /dev/null +++ b/home/machines/chupacabra.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + system.machine = { + wirelessInterface = "wlp59s0"; + i3FontSize = 9; + }; +} |