nix-config/modules/cockpit/default.nix

13 lines
229 B
Nix

{
services.cockpit = {
enable = true;
port = 9999;
openFirewall = true;
allowed-origins = [ "192.168.178.69:9999" ];
settings = {
WebService = {
AllowUnencrypted = true;
};
};
};
}