snowflake/home/default.nix

60 lines
942 B
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 06:04:38 -04:00
./btop
2023-05-21 16:49:26 -04:00
./bat
];
2023-03-19 19:31:25 -04:00
home.packages = with pkgs; [
2023-03-31 18:28:25 -04:00
croc
2023-05-17 08:57:12 -04:00
exa
2023-05-24 20:37:42 -04:00
gdu
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-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
HostName 192.168.1.25
User notoh
2023-05-21 17:53:44 -04:00
IdentityFile ~/.ssh/sakura
2023-05-17 11:24:06 -04:00
Host kariru
HostName 192.168.1.54
User notoh
2023-05-21 17:53:44 -04:00
IdentityFile ~/.ssh/kariru
2023-05-14 23:03:59 -04:00
Host pihole
Hostname 192.168.1.221
User root
Host pve1
Hostname 192.168.1.36
User root
'';
};
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
}