Better folder structure

This commit is contained in:
Filippo Berto 2022-08-12 09:09:29 +02:00
parent 8778fa8ccb
commit c4e5ccf6bf
75 changed files with 174 additions and 172 deletions

47
hm_modules/__basic.nix Normal file
View file

@ -0,0 +1,47 @@
{ pkgs, ... }:
{
home = {
language.base = "it_IT.UTF-8";
packages = with pkgs; [
fd
file
htop
mmv-go
neofetch
nixos-option
nix-tree
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
];
}