add hyperhive to pc2
This commit is contained in:
parent
6342aea9c2
commit
383afd496f
3 changed files with 20 additions and 4 deletions
|
|
@ -4,6 +4,7 @@
|
|||
./hardware.nix
|
||||
# ./vscode-server.nix
|
||||
# ./hass.nix
|
||||
./hyperhive.nix
|
||||
];
|
||||
|
||||
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