config/modules/cockpit/default.nix

13 lines
158 B
Nix
Raw Normal View History

2024-05-14 17:08:23 +03:00
let
port = 31350;
in
{
services.cockpit = {
enable = true;
inherit port;
};
services.hyprspace.services.manage = "/tcp/${toString port}";
}