2023-04-23 17:45:37 -04:00
|
|
|
{pkgs, ...}: {
|
2023-03-07 16:03:15 -05:00
|
|
|
imports = [
|
2023-03-19 15:10:30 -04:00
|
|
|
./neofetch
|
2023-03-07 16:03:15 -05:00
|
|
|
./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-07 16:03:15 -05:00
|
|
|
];
|
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-05-17 08:57:12 -04:00
|
|
|
exa
|
2023-05-28 20:55:49 -04:00
|
|
|
eva
|
2023-05-27 21:46:14 -04:00
|
|
|
du-dust
|
|
|
|
bottom
|
2023-06-10 17:55:51 -04:00
|
|
|
gnupg
|
2023-05-28 20:55:49 -04:00
|
|
|
gping
|
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
|
2023-06-11 01:48:14 -04:00
|
|
|
cachix
|
2023-05-14 23:28:26 -04:00
|
|
|
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-06-03 22:53:57 -04:00
|
|
|
Host yuki
|
|
|
|
HostName 192.168.1.36
|
|
|
|
User notoh
|
|
|
|
IdentityFile ~/.ssh/yuki
|
|
|
|
Host hetzner
|
|
|
|
HostName 5.161.181.184
|
|
|
|
User root
|
|
|
|
IdentityFile ~/.ssh/kumo
|
2023-05-14 23:03:59 -04:00
|
|
|
Host pihole
|
|
|
|
Hostname 192.168.1.221
|
|
|
|
User root
|
2023-06-06 01:08:59 -04:00
|
|
|
Host pve
|
|
|
|
Hostname 192.168.1.37
|
2023-05-14 23:03:59 -04:00
|
|
|
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
|
|
|
}
|