cockpit enable
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 2s

This commit is contained in:
Satria 2026-07-20 11:18:38 +07:00
commit 1bf75d2f1f
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ homelab, pkgs, ... }: {
services.cockpit = {
enable = true;
allowed-origins = [ "control.${homelab.proxy.base}" ];
plugins = with pkgs; [
cockpit-files cockpit-machines
];
};
}