snowflake/home/default.nix

95 lines
1.7 KiB
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{pkgs, ...}: {
imports = [
2023-03-19 15:10:30 -04:00
./neofetch
./nushell
./starship
./helix
./git
./lazygit
2023-05-17 08:57:12 -04:00
./lf
2023-04-14 23:19:31 -04:00
./direnv
2023-05-21 16:49:26 -04:00
./bat
];
2023-03-19 19:31:25 -04:00
home.packages = with pkgs; [
2023-06-13 12:10:14 -04:00
wget
2023-03-31 18:28:25 -04:00
croc
2023-09-16 18:54:14 -04:00
eza
2023-05-28 20:55:49 -04:00
eva
2023-09-24 13:40:45 -04:00
fd
2023-05-27 21:46:14 -04:00
du-dust
bottom
2023-06-10 17:55:51 -04:00
gnupg
2023-05-17 08:57:12 -04:00
ripgrep
2023-05-12 02:07:29 -04:00
lazydocker
2023-05-12 03:22:13 -04:00
yt-dlp
nfs-utils
2023-10-07 19:24:35 -04:00
dig
2023-11-04 15:51:04 -04:00
tailspin
2023-03-19 19:31:25 -04:00
];
2023-05-14 23:03:59 -04:00
2023-05-21 16:49:26 -04:00
services.gpg-agent = {
enable = true;
defaultCacheTtl = 3600;
pinentryFlavor = "gtk2";
enableSshSupport = true;
};
2023-05-14 23:03:59 -04:00
programs.ssh = {
enable = true;
extraConfig = ''
Host sakura
2023-09-06 05:20:36 -04:00
HostName 100.121.201.47
2023-05-14 23:03:59 -04:00
User notoh
2023-05-21 17:53:44 -04:00
IdentityFile ~/.ssh/sakura
2023-05-17 11:24:06 -04:00
Host kariru
2023-09-06 05:20:36 -04:00
HostName 100.126.229.95
2023-05-17 11:24:06 -04:00
User notoh
2023-05-21 17:53:44 -04:00
IdentityFile ~/.ssh/kariru
2023-06-03 22:53:57 -04:00
Host yuki
2023-09-06 05:20:36 -04:00
HostName 100.110.140.130
2023-06-03 22:53:57 -04:00
User notoh
IdentityFile ~/.ssh/yuki
2023-06-18 11:21:06 -04:00
Host arashi
2023-09-06 05:20:36 -04:00
HostName 100.94.214.100
2023-06-18 11:21:06 -04:00
User notoh
IdentityFile ~/.ssh/arashi
2023-06-23 11:04:02 -04:00
Host sora
2023-06-24 11:39:24 -04:00
HostName 100.87.54.48
2023-06-23 11:04:02 -04:00
User notoh
2023-06-23 22:14:52 -04:00
IdentityFile ~/.ssh/sora
2023-10-28 08:51:40 -04:00
Host daphbot
Hostname 100.109.118.139
User root
IdentityFile ~/.ssh/daphbot
2023-10-19 21:24:18 -04:00
Host tsuru
HostName 100.82.146.40
User notoh
IdentityFile ~/.ssh/tsuru
2023-09-16 18:54:14 -04:00
Host basegbot
2023-09-23 23:57:43 -04:00
HostName 100.83.81.116
User basegbot
IdentityFile ~/.ssh/basegbot
2023-11-07 11:13:45 -05:00
Host pihole
HostName 192.168.1.221
User notoh
IdentityFile ~/.ssh/pihole
Host rpi4
HostName 100.92.145.147
User notoh
IdentityFile ~/.ssh/rpi4
Host pve
Hostname 100.115.234.69
User root
2023-05-14 23:03:59 -04:00
'';
};
2023-05-17 11:24:06 -04:00
2023-05-21 17:53:44 -04:00
programs.zoxide = {
2023-05-17 08:57:12 -04:00
enable = true;
enableNushellIntegration = true;
options = [
"--cmd cdd"
];
};
2023-04-23 17:45:37 -04:00
}