13 lines
158 B
Nix
13 lines
158 B
Nix
|
let
|
||
|
port = 31350;
|
||
|
in
|
||
|
|
||
|
{
|
||
|
services.cockpit = {
|
||
|
enable = true;
|
||
|
inherit port;
|
||
|
};
|
||
|
|
||
|
services.hyprspace.services.manage = "/tcp/${toString port}";
|
||
|
}
|