diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 11:23:58 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 11:24:13 -0400 |
commit | 57de4ede0cef89c04a3728e4f8c97f67ce771eff (patch) | |
tree | d183069bc9b8f93f429763ec35e1beb5abd8bc4c /machines/oxo/home.nix | |
parent | 607c7626001ba1ba4f0b8b4b4b774b508143cab5 (diff) |
generalize server
Diffstat (limited to 'machines/oxo/home.nix')
-rw-r--r-- | machines/oxo/home.nix | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/machines/oxo/home.nix b/machines/oxo/home.nix new file mode 100644 index 0000000..8672e15 --- /dev/null +++ b/machines/oxo/home.nix @@ -0,0 +1,37 @@ +{ inputs, pkgs, ... }: + +{ + home = { + username = "compromyse"; + homeDirectory = "/home/compromyse"; + }; + + home.packages = with pkgs; [ + tmux + fzf + fd + ripgrep + + unzip + zip + ]; + + programs = { + direnv = { + enable = true; + enableBashIntegration = true; + nix-direnv.enable = true; + }; + + bash.enable = true; + }; + + imports = (map (path: ../../config/${path}) [ + "bash.nix" + "dotfiles.nix" + "git" + "nvim" + ]); + + home.stateVersion = "23.11"; +} |