From b7b288c2610aca889e9b7468ca17df431cbc0b12 Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Sat, 1 Jan 2022 20:52:02 +0100 Subject: [PATCH] Changed status machine --- machines/lisa/default.nix | 8 +------- rpi.nix | 8 +++++++- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/machines/lisa/default.nix b/machines/lisa/default.nix index 93392fe..ac6f1e0 100644 --- a/machines/lisa/default.nix +++ b/machines/lisa/default.nix @@ -25,13 +25,7 @@ enable = true; subdomain = "ci"; }; - status = { - enable = true; - nginx = { - enable = true; - subdomain = "status"; - }; - }; + }; nix.maxJobs = lib.mkDefault 4; diff --git a/rpi.nix b/rpi.nix index 156b5f4..6ee267e 100644 --- a/rpi.nix +++ b/rpi.nix @@ -35,7 +35,13 @@ nix.gc.automatic = true; nix.gc.options = "--delete-older-than 30d"; boot.cleanTmpDir = true; - +luj.status = { + enable = true; + nginx = { + enable = true; + subdomain = "status"; + }; + }; # Configure basic SSH access services.openssh.enable = true; # services.openssh.permitRootLogin = "yes";