2023-04-23 17:45:37 -04:00
|
|
|
{pkgs, ...}: {
|
2023-03-07 16:03:15 -05:00
|
|
|
imports = [
|
2024-01-30 07:44:05 -05:00
|
|
|
./helix
|
2023-03-19 15:10:30 -04:00
|
|
|
./neofetch
|
2023-03-07 16:03:15 -05:00
|
|
|
./nushell
|
|
|
|
./starship
|
|
|
|
./lazygit
|
2024-01-17 13:34:08 -05:00
|
|
|
./yazi
|
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-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
|
2023-05-14 23:28:26 -04:00
|
|
|
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
|
2024-01-27 14:33:00 -05:00
|
|
|
unzip
|
|
|
|
unrar
|
|
|
|
p7zip
|
2024-02-05 21:24:13 -05:00
|
|
|
procs
|
2023-03-19 19:31:25 -04:00
|
|
|
];
|
2023-05-14 23:03:59 -04:00
|
|
|
|
2024-02-01 15:48:47 -05:00
|
|
|
services = {
|
|
|
|
gpg-agent = {
|
|
|
|
enable = true;
|
|
|
|
defaultCacheTtl = 3600;
|
2024-03-18 14:20:01 -04:00
|
|
|
pinentryPackage = pkgs.pinentry-curses;
|
2024-02-01 15:48:47 -05:00
|
|
|
enableSshSupport = true;
|
|
|
|
enableNushellIntegration = true;
|
|
|
|
};
|
2023-05-21 16:49:26 -04:00
|
|
|
};
|
|
|
|
|
2024-02-01 15:48:47 -05:00
|
|
|
programs = {
|
|
|
|
bat.enable = true;
|
2024-02-05 21:24:13 -05:00
|
|
|
atuin = {
|
|
|
|
enable = true;
|
|
|
|
enableNushellIntegration = true;
|
|
|
|
settings = {
|
|
|
|
auto_sync = true;
|
|
|
|
update_check = true;
|
2024-02-08 11:42:25 -05:00
|
|
|
sync_frequency = "1h";
|
2024-02-05 21:24:13 -05:00
|
|
|
sync_address = "http://100.104.42.96:8888";
|
2024-02-08 11:42:25 -05:00
|
|
|
secrets_filter = true;
|
2024-02-05 21:24:13 -05:00
|
|
|
style = "full";
|
|
|
|
};
|
2024-04-12 21:29:38 -04:00
|
|
|
flags = ["--disable-up-arrow"];
|
2024-02-05 21:24:13 -05:00
|
|
|
};
|
2024-02-01 15:48:47 -05:00
|
|
|
git = {
|
|
|
|
enable = true;
|
|
|
|
delta.enable = true;
|
|
|
|
userEmail = "github@notohh.dev";
|
|
|
|
userName = "notohh";
|
|
|
|
signing = {
|
|
|
|
key = "BD47506D475EE86D";
|
|
|
|
signByDefault = true;
|
|
|
|
};
|
|
|
|
ignores = ["*result*" ".direnv" "node_modules"];
|
|
|
|
};
|
|
|
|
gh = {
|
|
|
|
enable = true;
|
|
|
|
gitCredentialHelper.enable = true;
|
|
|
|
settings = {
|
|
|
|
editor = "hx";
|
|
|
|
prompt = "enabled";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
direnv = {
|
|
|
|
enable = true;
|
|
|
|
enableNushellIntegration = true;
|
|
|
|
nix-direnv.enable = true;
|
|
|
|
};
|
|
|
|
zoxide = {
|
|
|
|
enable = true;
|
|
|
|
enableNushellIntegration = true;
|
|
|
|
options = ["--cmd cdd"];
|
|
|
|
};
|
2023-05-17 08:57:12 -04:00
|
|
|
};
|
2023-04-23 17:45:37 -04:00
|
|
|
}
|