diff options
Diffstat (limited to '')
| -rw-r--r-- | machines/owo/home.nix | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/machines/owo/home.nix b/machines/owo/home.nix new file mode 100644 index 0000000..647aed2 --- /dev/null +++ b/machines/owo/home.nix @@ -0,0 +1,28 @@ +{ inputs, pkgs, ... }: + +{ +  home = { +    username = "compromyse"; +    homeDirectory = "/home/compromyse"; +  }; + +  home.packages = with pkgs; [ +    tmux +    fzf +    fd +    ripgrep +    jq + +    unzip +    zip +  ]; + +  imports = (map (path: ../../config/${path}) [ +    "bash.nix" +    "dotfiles.nix" +    "git" +    "nvim" +  ]); + +  home.stateVersion = "23.11"; +} | 
