nix-flake/modules/system/homelab/control.nix
satr14 1bf75d2f1f
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 2s
cockpit enable
2026-07-20 11:19:48 +07:00

9 lines
No EOL
204 B
Nix

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