nix-flake/modules/system/homelab/control.nix
satr14 30f3ef32fa
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 21s
fix origins
2026-07-20 18:55:44 +07:00

9 lines
No EOL
214 B
Nix

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