Files
nix/modules/homelab/cockpit.nix
2025-10-04 02:11:19 -05:00

11 lines
118 B
Nix

{ config, pkgs, ... }:
{
services.cockpit = {
enable = true;
openFirewall = true;
port = 9090;
};
}