40 lines
684 B
Nix
40 lines
684 B
Nix
{ pkgs, ... }: {
|
|
home = {
|
|
language.base = "it_IT.UTF-8";
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
fd file htop mmv-go neofetch nixos-option pv ripgrep unrar unzip wget
|
|
xclip yq zip;
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./configurations.nix
|
|
|
|
./bash.nix
|
|
./bat.nix
|
|
./bottom.nix
|
|
# ./broot.nix
|
|
./dircolors.nix
|
|
./direnv.nix
|
|
./exa.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
|
|
];
|
|
}
|