diff --git a/modules/homelab/cockpit.nix b/modules/homelab/cockpit.nix new file mode 100644 index 0000000..863c258 --- /dev/null +++ b/modules/homelab/cockpit.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: + +{ + services.cockpit = { + enable = true; + openFirewall = true; + port = 9090; + }; +} +