Enable btop for all the hosts using ccr

This commit is contained in:
Andrea Ciceri 2024-02-25 19:44:11 +01:00
parent f3c4320fa3
commit a3f2e4b3d4
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,6 @@
{
programs.btop = {
enable = true;
settings.update_ms = 100;
};
}

View file

@ -71,7 +71,7 @@ in {
config = lib.mkIf cfg.enable {
# FIXME shouldn't set these groups by default
ccr.extraGroups = ["wheel" "fuse" "video" "dialout" "systemd-journal" "camera"];
ccr.modules = ["shell" "git" "nix-index"];
ccr.modules = ["shell" "git" "nix-index" "btop"];
backup.paths = cfg.backupPaths;