nixos/hosts/server/modules/internal/cockpit.nix
2024-06-30 17:42:09 +02:00

16 lines
329 B
Nix

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