Files
nixos/home/home.nix
T
Greg Hellings dbf3579b4b Get Genesis buttoned up
Stop building Gnome stuff for it
Fix up DHCP responses to the new topology
Make Home Assistant Work Again
Complete changeover
2023-08-22 00:40:32 -05:00

62 lines
907 B
Nix

{ pkgs, lib, gui, gnome,
inputs,
host ? "most",
...}:
{
imports = [
inputs.nixneovim.nixosModules.default
./modules
./ansible.nix
./bash.nix
./direnv.nix
./git.nix
./ssh.nix
./templates.nix
./vim.nix
./xonsh.nix
./hosts/${host}
] ++ ( if gui then [ ./gui ] else []);
greg.gnome = gnome;
programs.tmux = {
enable = true;
keyMode = "vi";
shell = "${pkgs.xonsh}/bin/xonsh";
terminal = "xterm-256color";
customPaneNavigationAndResize = true;
#"set-option -g default-command ${pkgs.xonsh}/bin/xonsh"
extraConfig = (lib.strings.concatStringsSep "\n" [
"bind P paste-buffer"
]);
};
home.stateVersion = "23.05";
home.packages = with pkgs; [
bitwarden-cli
busybox
copier
diffutils
findutils
git
gnupatch
gregpy
hms
htop
inetutils
jq
nano
nix-prefetch
nmap
openssl
setup-ssh
tmux
transcrypt
tree
unzip
wget
];
}