snowflake/home/default.nix

70 lines
1.1 KiB
Nix

{pkgs, ...}: {
imports = [
./neofetch
./nushell
./starship
./helix
./git
./lazygit
./lf
./direnv
./bat
];
home.packages = with pkgs; [
croc
exa
eva
du-dust
bottom
gping
ripgrep
lazydocker
yt-dlp
nfs-utils
];
services.gpg-agent = {
enable = true;
defaultCacheTtl = 3600;
pinentryFlavor = "gtk2";
enableSshSupport = true;
};
programs.ssh = {
enable = true;
extraConfig = ''
Host sakura
HostName 192.168.1.25
User notoh
IdentityFile ~/.ssh/sakura
Host kariru
HostName 192.168.1.54
User notoh
IdentityFile ~/.ssh/kariru
Host yuki
HostName 192.168.1.36
User notoh
IdentityFile ~/.ssh/yuki
Host hetzner
HostName 5.161.181.184
User root
IdentityFile ~/.ssh/kumo
Host pihole
Hostname 192.168.1.221
User root
Host pve
Hostname 192.168.1.37
User root
'';
};
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
options = [
"--cmd cdd"
];
};
}