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

View file

@ -134,6 +134,7 @@ Most services are served over [tailscale](https://tailscale.com/), using certifi
Includes links to stuff which used to be in the previous section but is not used anymore. Only created this section in June 2023, so stuff I used earlier might not be here. Sorted with the most recently dropped things at the top.
- [htop](https://htop.dev/) — I switched to [bottom](https://github.com/ClementTsang/bottom), as the interface felt way cleaner
- [Wezterm](https://github.com/wez/wezterm) — I switched to [Foot](https://codeberg.org/dnkl/foot), as wezterm was laggy, unstable, and kept breaking between releases
- [Ranger](https://github.com/ranger/ranger) — I switched to [Yazi](https://github.com/sxyazi/yazi)
- [firenvim](https://glacambre/firenvim) - the concept is cool, but I found the whole thing pretty annoying at times

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"
];
};
# }}}