Files
nixos/home/home.nix
T

51 lines
778 B
Nix
Raw Normal View History

{ pkgs
, lib
, host ? "most"
, nixvim
, ...
}:
2022-04-18 11:38:06 -05:00
2022-12-24 00:36:36 -06:00
{
nixpkgs.config.allowUnfreePredicate = (_: true);
imports = [
nixvim.homeManagerModules.default
./modules
] ++ lib.optionals (builtins.pathExists ./hosts/${host}) [ ./hosts/${host} ];
2022-04-29 10:58:31 -05:00
2022-04-18 11:38:06 -05:00
programs.tmux = {
enable = true;
keyMode = "vi";
terminal = "xterm-256color";
customPaneNavigationAndResize = true;
extraConfig = (lib.strings.concatStringsSep "\n" [
"bind P paste-buffer"
]);
};
2022-09-19 13:26:51 -05:00
home.stateVersion = "23.05";
home.packages = with pkgs; [
bitwarden-cli
copier
diffutils
findutils
gh
git
gnupatch
hms
htop
inetutils
jq
nano
nix-prefetch
nmap
openssl
setup-ssh
tmux
tree
unzip
wget
zip
];
2022-04-18 11:38:06 -05:00
}