power saving, starr, jelly, akkoma

This commit is contained in:
Daniel Kauss Serna 2026-03-20 13:59:08 +01:00
parent 8f6d63909a
commit a0d19a672e
20 changed files with 439 additions and 22 deletions

13
services/status.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
services.glances = {
enable = true;
port = 61208;
};
services.caddy.virtualHosts."status.danielk.me" = {
extraConfig = ''
reverse_proxy 127.0.0.1:61208
'';
};
}