snowflake/home/default.nix

51 lines
686 B
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{pkgs, ...}: {
imports = [
2024-01-26 08:05:59 -05:00
./editors/helix
2023-03-19 15:10:30 -04:00
./neofetch
./nushell
./starship
./git
./lazygit
2023-04-14 23:19:31 -04:00
./direnv
2024-01-17 13:34:08 -05:00
./yazi
];
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-11-27 07:23:40 -05:00
nitch
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;
2023-12-24 13:17:30 -05:00
pinentryFlavor = "curses";
2023-05-21 16:49:26 -04:00
enableSshSupport = true;
enableNushellIntegration = true;
2023-05-21 16:49:26 -04:00
};
2023-12-29 12:30:33 -05:00
programs.bat = {
enable = true;
};
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
}