2023-06-20 15:55:02 -05:00
|
|
|
{ pkgs, lib, gui, gnome,
|
2023-06-20 19:28:14 -05:00
|
|
|
inputs,
|
2023-08-21 10:20:24 -05:00
|
|
|
host ? "most",
|
2023-06-20 15:55:02 -05:00
|
|
|
...}:
|
2022-04-18 11:38:06 -05:00
|
|
|
|
2022-12-24 00:36:36 -06:00
|
|
|
{
|
2022-04-18 11:38:06 -05:00
|
|
|
imports = [
|
2023-06-20 19:28:14 -05:00
|
|
|
inputs.nixneovim.nixosModules.default
|
2022-04-29 10:58:31 -05:00
|
|
|
./modules
|
2022-05-27 13:53:02 -05:00
|
|
|
./ansible.nix
|
2022-04-18 11:38:06 -05:00
|
|
|
./bash.nix
|
2022-05-04 13:52:38 -05:00
|
|
|
./direnv.nix
|
2022-04-18 11:38:06 -05:00
|
|
|
./git.nix
|
2022-04-18 14:01:00 -05:00
|
|
|
./ssh.nix
|
2022-10-12 21:50:46 -05:00
|
|
|
./templates.nix
|
2022-04-29 10:58:31 -05:00
|
|
|
./vim.nix
|
|
|
|
|
./xonsh.nix
|
2023-08-21 10:20:24 -05:00
|
|
|
./hosts/${host}
|
2022-12-24 00:36:36 -06:00
|
|
|
] ++ ( if gui then [ ./gui ] else []);
|
2022-04-29 10:58:31 -05:00
|
|
|
|
2022-04-18 11:38:06 -05:00
|
|
|
|
2022-12-24 00:36:36 -06:00
|
|
|
greg.gnome = gnome;
|
|
|
|
|
|
2022-09-19 13:26:51 -05:00
|
|
|
programs.tmux = {
|
|
|
|
|
enable = true;
|
|
|
|
|
keyMode = "vi";
|
2023-07-27 13:29:04 -05:00
|
|
|
shell = "${pkgs.xonsh}/bin/xonsh";
|
2022-09-19 13:26:51 -05:00
|
|
|
terminal = "xterm-256color";
|
|
|
|
|
customPaneNavigationAndResize = true;
|
2023-07-27 13:29:04 -05:00
|
|
|
#"set-option -g default-command ${pkgs.xonsh}/bin/xonsh"
|
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
|
2023-08-22 00:40:32 -05:00
|
|
|
busybox
|
2023-08-21 21:22:26 -05:00
|
|
|
copier
|
2022-09-05 23:11:01 -05:00
|
|
|
diffutils
|
|
|
|
|
findutils
|
|
|
|
|
git
|
|
|
|
|
gnupatch
|
2022-11-01 08:35:06 -05:00
|
|
|
gregpy
|
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-21 10:28:23 -05:00
|
|
|
nix-prefetch
|
2022-11-17 13:05:08 -06:00
|
|
|
nmap
|
2022-10-03 09:43:57 -05:00
|
|
|
openssl
|
2023-03-17 20:08:11 -05:00
|
|
|
setup-ssh
|
2022-09-05 23:11:01 -05:00
|
|
|
tmux
|
|
|
|
|
transcrypt
|
2023-06-30 16:30:11 -05:00
|
|
|
tree
|
2022-09-05 23:11:01 -05:00
|
|
|
unzip
|
|
|
|
|
wget
|
2022-08-02 01:50:50 -05:00
|
|
|
];
|
2022-04-18 11:38:06 -05:00
|
|
|
}
|