diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-01-31 22:02:28 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-01-31 22:02:28 +0530 | 
| commit | 01bb0877c285383fd2857920048bd2576f4d31e9 (patch) | |
| tree | b6f26596f1051baf5b791450d6158a69363f6c76 /machines/z/home.nix | |
| parent | 578dd91bd1af79b256166ecf797344611790e267 (diff) | |
restructure
Diffstat (limited to 'machines/z/home.nix')
| -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"; +} | 
