chupacabra home machine config

This commit is contained in:
Griffin Smith 2020-03-29 12:51:55 -04:00
parent 81628a9c39
commit 6ae7133781
2 changed files with 9 additions and 5 deletions

View file

@ -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;
};
}

View file

@ -0,0 +1,7 @@
{ ... }:
{
system.machine = {
wirelessInterface = "wlp59s0";
i3FontSize = 9;
};
}