From 6ae7133781e13b86f6d0a7f6eb1edba76c3b6457 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sun, 29 Mar 2020 12:51:55 -0400 Subject: [PATCH] chupacabra home machine config --- home/home.nix | 7 ++----- home/machines/chupacabra.nix | 7 +++++++ 2 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 home/machines/chupacabra.nix diff --git a/home/home.nix b/home/home.nix index 402456e8a..f6b2d81b6 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 000000000..714348e3f --- /dev/null +++ b/home/machines/chupacabra.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + system.machine = { + wirelessInterface = "wlp59s0"; + i3FontSize = 9; + }; +}