snowflake/home/default.nix
notohh 1b0d532cc5
Some checks failed
flake check / check (push) Failing after 32s
fmt check / check (push) Successful in 37s
home: move bat to default.nix
2023-12-29 12:30:33 -05:00

51 lines
689 B
Nix

{pkgs, ...}: {
imports = [
./neofetch
./nushell
./starship
./helix
./git
./lazygit
./direnv
./bat
];
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"
];
};
}