nix-dotfiles/modules/hm/__basic.nix

61 lines
964 B
Nix

{ pkgs, ... }:
{
services.home-manager.autoExpire = {
enable = true;
frequency = "daily";
timestamp = "-7 days";
};
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
];
}