Files
nixos/home/home.nix
T

49 lines
710 B
Nix
Raw Normal View History

2024-02-26 11:39:56 -06:00
{ pkgs, lib,
2023-08-21 10:20:24 -05:00
host ? "most",
2024-08-17 00:04:27 -05:00
nixvim,
2023-06-20 15:55:02 -05:00
...}:
2022-04-18 11:38:06 -05:00
2022-12-24 00:36:36 -06:00
{
2024-08-02 08:43:44 -05:00
nixpkgs.config.allowUnfreePredicate = (_: true);
2022-04-18 11:38:06 -05:00
imports = [
2024-08-17 00:04:27 -05:00
nixvim.homeManagerModules.default
2022-04-29 10:58:31 -05:00
./modules
2024-07-31 15:20:26 -05:00
] ++ lib.optionals (builtins.pathExists ./hosts/${host}) [ ./hosts/${host} ];
2022-04-29 10:58:31 -05:00
2022-04-18 11:38:06 -05:00
2022-09-19 13:26:51 -05:00
programs.tmux = {
enable = true;
keyMode = "vi";
terminal = "xterm-256color";
customPaneNavigationAndResize = true;
2022-10-06 10:26:45 -05:00
extraConfig = (lib.strings.concatStringsSep "\n" [
"bind P paste-buffer"
]);
2022-09-19 13:26:51 -05:00
};
2023-06-20 11:00:12 -05:00
home.stateVersion = "23.05";
2022-08-19 10:55:21 -05:00
home.packages = with pkgs; [
2022-09-05 23:11:01 -05:00
bitwarden-cli
2024-01-22 18:37:41 +00:00
copier
2022-09-05 23:11:01 -05:00
diffutils
findutils
2023-11-01 14:14:50 -05:00
gh
2022-09-05 23:11:01 -05:00
git
gnupatch
2022-08-19 10:55:21 -05:00
hms
2022-09-16 11:04:22 -05:00
htop
2023-04-17 21:02:07 -05:00
inetutils
2022-10-10 10:37:50 -05:00
jq
2022-09-05 23:11:01 -05:00
nano
2023-08-14 09:52:44 -05:00
nix-prefetch
2022-11-17 13:05:08 -06:00
nmap
2022-10-03 09:43:57 -05:00
openssl
setup-ssh
2022-09-05 23:11:01 -05:00
tmux
2023-06-30 16:30:11 -05:00
tree
2022-09-05 23:11:01 -05:00
unzip
wget
2024-02-26 11:39:56 -06:00
zip
2024-01-22 18:37:41 +00:00
];
2022-04-18 11:38:06 -05:00
}