add hyperhive to pc2
This commit is contained in:
parent
6342aea9c2
commit
383afd496f
3 changed files with 20 additions and 4 deletions
8
flake.lock
generated
8
flake.lock
generated
|
|
@ -365,11 +365,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1780687857,
|
"lastModified": 1780689304,
|
||||||
"narHash": "sha256-4XX2q6fb4Y7UvkjqzfyUsoO1a5Nsl0Uu39hwG3ZU3v0=",
|
"narHash": "sha256-O/2KxJBvp6EDOdLqQZtQ0Dda4cebSd7NWwu08vHCQrE=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "d25f2779e80e82b4a128c4b8cb9c5a4e57e69d52",
|
"rev": "86f0de751ff9066e82dab432547a13bb9d484862",
|
||||||
"revCount": 1674,
|
"revCount": 1676,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://forge.darkest.space/hyperhive/hyperhive.git"
|
"url": "https://forge.darkest.space/hyperhive/hyperhive.git"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
# ./vscode-server.nix
|
# ./vscode-server.nix
|
||||||
# ./hass.nix
|
# ./hass.nix
|
||||||
|
./hyperhive.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
|
||||||
15
nixosConfigurations/muede-pc2/hyperhive.nix
Normal file
15
nixosConfigurations/muede-pc2/hyperhive.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
{ hyperhive, ... }:
|
||||||
|
{
|
||||||
|
imports = [ hyperhive.nixosModules.default ];
|
||||||
|
|
||||||
|
config.services.hyperhive = {
|
||||||
|
enable = true;
|
||||||
|
domain = "umbra.darkest.space";
|
||||||
|
matrix = {
|
||||||
|
enable = true;
|
||||||
|
gui.enable = true;
|
||||||
|
};
|
||||||
|
forge.ci.enable = true;
|
||||||
|
gateway.localHostsEntry = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue