This commit is contained in:
Hadi 2024-06-30 17:42:09 +02:00
parent dae8755b59
commit c4d436b434

View File

@ -1,8 +1,15 @@
# Web-based graphical interface for servers # Web-based graphical interface for servers
{ { pkgs, ... }: {
services.cockpit = { services.cockpit = {
enable = true; enable = true;
port = 3009; port = 3009;
openFirewall = true; openFirewall = true;
settings.WebService = { AllowUnencrypted = true; };
}; };
environment.systemPackages = with pkgs; [
networkmanagerapplet
selinux-python
cockpit
];
} }