notohh
1dd1ef8f05
Some checks failed
fmt check / check (push) Waiting to run
flake check / check (push) Has been cancelled
50 lines
679 B
Nix
50 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"
|
|
];
|
|
};
|
|
}
|