nix-dotfiles/hm_modules/__basic.nix
2022-12-06 22:34:26 +01:00

49 lines
676 B
Nix

{ pkgs, ... }: {
home = {
language.base = "it_IT.UTF-8";
packages = with pkgs; [
fd
file
htop
lf
mmv-go
neofetch
nixos-option
nix-tree
pv
ripgrep
unrar
unzip
wget
xclip
yq
zip
];
};
imports = [
./configurations.nix
./bash.nix
./bat.nix
./bottom.nix
./broot.nix
./dircolors.nix
./direnv.nix
./fonts.nix
./fzf.nix
./git.nix
./gpg.nix
./info.nix
./jq.nix
./keychain.nix
./lf.nix
./man.nix
./shell_aliases.nix
./ssh.nix
./starship.nix
./tmux.nix
./zoxide.nix
./zsh.nix
];
}