Files
nixos/home/home.nix
T

49 lines
753 B
Nix
Raw Normal View History

2024-10-19 01:19:59 -05:00
{
pkgs,
lib,
host ? "most",
top,
2024-10-19 01:19:59 -05:00
...
}:
2022-04-18 11:38:06 -05:00
2022-12-24 00:36:36 -06:00
{
imports = [
top.nixvimunstable.homeManagerModules.nixvim
2025-06-10 14:28:46 -05:00
top.self.modules.homeManagerModule
./baseline
] ++ lib.optionals (builtins.pathExists ./hosts/${host}) [ ./hosts/${host} ];
2022-04-29 10:58:31 -05:00
home.stateVersion = "25.05";
2025-06-10 14:28:46 -05:00
home.packages = with pkgs; [
copier
diffutils
findutils
gh
git
gnupatch
hms
2025-05-19 16:13:33 -05:00
btop
inetutils
jq
nano
nix-prefetch
nmap
openssl
setup-ssh
tmux
tree
unzip
wget
zip
];
2025-06-10 14:28:46 -05:00
programs.tmux = {
enable = true;
keyMode = "vi";
terminal = "xterm-256color";
customPaneNavigationAndResize = true;
extraConfig = (lib.strings.concatStringsSep "\n" [ "bind P paste-buffer" ]);
};
2022-04-18 11:38:06 -05:00
}