add nebula

This commit is contained in:
jaina heartles 2024-08-07 18:23:56 -07:00
parent cc26134518
commit 13642fbbab
2 changed files with 13 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./heartles-xyz-proxy.nix
./ogdo.nix
./postfix.nix
./nebula.nix
];
nix.settings = {

12
nebula.nix Normal file
View 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";
};
}