nix-config/modules/cockpit/default.nix
2026-01-26 10:35:56 +01:00

15 lines
263 B
Nix

{
services.cockpit = {
enable = true;
openFirewall = true;
allowed-origins = [
"http://192.168.178.69:9090"
"wss://192.168.178.69:9090"
];
settings = {
WebService = {
AllowUnencrypted = true;
};
};
};
}