modules/cockpit: init
This commit is contained in:
parent
2b98b473a0
commit
29e7717d30
2 changed files with 14 additions and 0 deletions
12
modules/cockpit/default.nix
Normal file
12
modules/cockpit/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
let
|
||||||
|
port = 31350;
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
services.cockpit = {
|
||||||
|
enable = true;
|
||||||
|
inherit port;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.hyprspace.services.manage = "/tcp/${toString port}";
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ let
|
||||||
aspects = [
|
aspects = [
|
||||||
./autopatch
|
./autopatch
|
||||||
./brig
|
./brig
|
||||||
|
./cockpit
|
||||||
./desktop
|
./desktop
|
||||||
./firewall
|
./firewall
|
||||||
./games
|
./games
|
||||||
|
@ -34,6 +35,7 @@ in rec {
|
||||||
sets = with modules; rec {
|
sets = with modules; rec {
|
||||||
base = [
|
base = [
|
||||||
autopatch
|
autopatch
|
||||||
|
cockpit
|
||||||
hardened
|
hardened
|
||||||
idm
|
idm
|
||||||
impurity-logger
|
impurity-logger
|
||||||
|
|
Loading…
Reference in a new issue