11 lines
118 B
Nix
11 lines
118 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.cockpit = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
port = 9090;
|
|
};
|
|
}
|
|
|