diff options
Diffstat (limited to '')
| -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"; +}  | 
