add nebula
This commit is contained in:
parent
cc26134518
commit
13642fbbab
2 changed files with 13 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
./heartles-xyz-proxy.nix
|
||||
./ogdo.nix
|
||||
./postfix.nix
|
||||
./nebula.nix
|
||||
];
|
||||
|
||||
nix.settings = {
|
||||
|
|
12
nebula.nix
Normal file
12
nebula.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.nebula ];
|
||||
services.nebula.networks.home = {
|
||||
enable = true;
|
||||
isLighthouse = true;
|
||||
cert = "/etc/nebula/node.crt";
|
||||
key = "/etc/nebula/node.key";
|
||||
ca = "/etc/nebula/ca.crt";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue