1
Fork 0

Remove htop

Additionally, tweak restic a bit and add more comments there
This commit is contained in:
prescientmoon 2024-08-30 01:20:13 +02:00
parent 366ed55d6f
commit 0a2f22b0af
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
4 changed files with 9 additions and 13 deletions
hosts/nixos/common
global
optional/services/restic

View file

@ -1,6 +0,0 @@
{
programs.htop = {
enable = true;
settings.tree_view = true;
};
}

View file

@ -16,7 +16,6 @@ let
# }}}
# {{{ global configuration
./cli/fish.nix
./cli/htop.nix
./services/openssh.nix
./nix.nix
./locale.nix

View file

@ -19,12 +19,11 @@ let
extraOptions = [ "sftp.args='-i ${config.users.users.pilot.home}/.ssh/id_ed25519'" ];
exclude = [
# Syncthing / direnv / git / snapper stuff
".direnv"
".git"
".stfolder"
".stversions"
".snapshots"
".direnv" # Direnv
".git" # Git
".stfolder" # Syncthing
".stversions" # Syncthing
".snapshots" # Snapper
] ++ exclude;
};
in
@ -47,6 +46,9 @@ in
exclude = [
# Projects are available on github and in my own forge already
"/persist/data${config.users.users.pilot.home}/projects"
# Screenshots are usually worthless
"/persist/data${config.users.users.pilot.home}/media/pictures/screenshots"
];
};
# }}}