diff options
Diffstat (limited to 'users/glittershark/system/home/machines/yeren.nix')
-rw-r--r-- | users/glittershark/system/home/machines/yeren.nix | 17 |
1 files changed, 17 insertions, 0 deletions
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; + }; +} |