snowflake/home/default.nix
notohh 1dd1ef8f05
Some checks failed
fmt check / check (push) Waiting to run
flake check / check (push) Has been cancelled
home: remove ./bat from default
2023-12-29 12:38:47 -05:00

51 lines
679 B
Nix

{pkgs, ...}: {
imports = [
./neofetch
./nushell
./starship
./helix
./git
./lazygit
./direnv
];
home.packages = with pkgs; [
wget
croc
eza
eva
fd
du-dust
bottom
gnupg
ripgrep
lazydocker
yt-dlp
nfs-utils
dig
tailspin
nitch
joshuto
];
services.gpg-agent = {
enable = true;
defaultCacheTtl = 3600;
pinentryFlavor = "curses";
enableSshSupport = true;
enableNushellIntegration = true;
};
programs.bat = {
enable = true;
};
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
options = [
"--cmd cdd"
];
};
}