snowflake/home/default.nix
notohh f3f2d85852
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
home: use tailscale for ssh
2023-06-24 11:39:24 -04:00

77 lines
1.3 KiB
Nix

{pkgs, ...}: {
imports = [
./neofetch
./nushell
./starship
./helix
./git
./lazygit
./lf
./direnv
./bat
];
home.packages = with pkgs; [
wget
croc
exa
eva
du-dust
bottom
gnupg
gping
ripgrep
lazydocker
yt-dlp
cachix
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 arashi
HostName 192.168.1.211
User notoh
IdentityFile ~/.ssh/arashi
Host sora
HostName 100.87.54.48
User notoh
IdentityFile ~/.ssh/sora
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"
];
};
}