diff options
Diffstat (limited to 'machines/lapin')
| -rw-r--r-- | machines/lapin/default.nix | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/machines/lapin/default.nix b/machines/lapin/default.nix index 4940df6..07114e5 100644 --- a/machines/lapin/default.nix +++ b/machines/lapin/default.nix @@ -1,4 +1,4 @@ -{ me, config, ... }: +{ ... }: { imports = [ @@ -7,16 +7,28 @@ ./hardware.nix ./devices.nix - ../../modules/www - ../../services/conduwuit.nix ../../services/pds.nix ../../services/akkoma ]; - foundation.monitoring = { - client.enable = true; - services = [ "base" "akkoma" "pds" "conduwuit" ]; + foundation = { + www = { + enable = true; + + public = true; + tailnet = true; + }; + + monitoring = { + client.enable = true; + services = [ + "base" + "akkoma" + "pds" + "conduwuit" + ]; + }; }; system.stateVersion = "23.05"; |
