diff options
Diffstat (limited to '')
| -rw-r--r-- | machines/z/home.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/machines/z/home.nix b/machines/z/home.nix new file mode 100644 index 0000000..564d4d5 --- /dev/null +++ b/machines/z/home.nix @@ -0,0 +1,20 @@ +{ pkgs, ... }: + +{ + + home = { + username = "compromyse"; + homeDirectory = "/home/compromyse"; + }; + + imports = [ + ../../config/themes.nix + ../../config/alacritty + ]; + + home.packages = with pkgs; [ + wget + ]; + + home.stateVersion = "23.11"; +} |
