diff options
Diffstat (limited to 'users/glittershark/system/home')
-rw-r--r-- | users/glittershark/system/home/default.nix | 9 | ||||
-rw-r--r-- | users/glittershark/system/home/machines/yeren.nix | 17 |
2 files changed, 25 insertions, 1 deletions
diff --git a/users/glittershark/system/home/default.nix b/users/glittershark/system/home/default.nix index d19397192e4d..1d6d8795ab97 100644 --- a/users/glittershark/system/home/default.nix +++ b/users/glittershark/system/home/default.nix @@ -25,5 +25,12 @@ rec { dobharchuHome = dobharchu.activation-script; - meta.targets = [ "chupacabraHome" ]; + yeren = home ./machines/yeren.nix; + + yerenHome = yeren.activation-script; + + meta.targets = [ + "chupacabraHome" + "yerenHome" + ]; } diff --git a/users/glittershark/system/home/machines/yeren.nix b/users/glittershark/system/home/machines/yeren.nix new file mode 100644 index 000000000000..43f59d375159 --- /dev/null +++ b/users/glittershark/system/home/machines/yeren.nix @@ -0,0 +1,17 @@ +{ pkgs, lib, config, ... }: + +{ + imports = [ + ../platforms/linux.nix + ../modules/common.nix + ]; + + # for when hacking + programs.home-manager.enable = true; + home.stateVersion = "20.03"; + + system.machine = { + wirelessInterface = "wlp0s20f3"; + i3FontSize = 9; + }; +} |