nix-dotfiles/hm/modules/combined/minimal.nix
2025-09-08 11:36:45 +02:00

43 lines
675 B
Nix

{ pkgs, ... }: {
imports = [
../configurations.nix
../bash.nix
../bottom.nix
../git.nix
../gpg.nix
../keychain.nix
../lsd.nix
../shell_aliases.nix
../ssh.nix
../zellij.nix
../zoxide.nix
../zsh.nix
];
home = {
language.base = "it_IT.UTF-8";
packages = builtins.attrValues {
inherit (pkgs)
fastfetch
file
unrar
unzip
wget
zip
;
};
};
programs = {
ripgrep.enable = true;
fd = { enable = true; hidden = true; };
};
services.home-manager.autoExpire = {
enable = true;
frequency = "daily";
timestamp = "-7 days";
};
}