55 lines
848 B
Nix
55 lines
848 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
language.base = "it_IT.UTF-8";
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
fastfetch
|
|
file
|
|
mmv-go
|
|
pv
|
|
unrar
|
|
unzip
|
|
wget
|
|
zip
|
|
;
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
bottom.enable = true;
|
|
ripgrep.enable = true;
|
|
fd = { enable = true; hidden = true; };
|
|
};
|
|
|
|
imports = [
|
|
./configurations.nix
|
|
|
|
./bash.nix
|
|
# ./bat.nix
|
|
# ./bottom.nix
|
|
# ./broot.nix
|
|
# ./dircolors.nix
|
|
./direnv.nix
|
|
# ./exa.nix
|
|
./lsd.nix
|
|
./fzf.nix
|
|
./git.nix
|
|
./gpg.nix
|
|
./info.nix
|
|
# ./jq.nix
|
|
# ./joshuto.nix
|
|
./keychain.nix
|
|
# ./lf.nix
|
|
./man.nix
|
|
# ./ntfy.nix
|
|
./shell_aliases.nix
|
|
./ssh.nix
|
|
./starship.nix
|
|
./tmux.nix
|
|
./yazi.nix
|
|
./zellij.nix
|
|
./zoxide.nix
|
|
./zsh.nix
|
|
];
|
|
}
|