remove the-nest

This commit is contained in:
TheWanderingCrow 2025-11-24 10:10:06 -05:00
parent b69957614f
commit fb0205b43d
6 changed files with 12 additions and 91 deletions

View file

@ -28,14 +28,16 @@ in
'';
services.mealie = {
enable = true;
package = pkgs.unstable.mealie;
settings = {
BASE_URL = "https://mealie.wanderingcrow.net";
ALLOW_SIGNUP = false;
ALLOW_PASSWORD_LOGIN = false;
ALLOW_SIGNUP = "false";
ALLOW_PASSWORD_LOGIN = "false";
DB_ENGINE = "sqlite";
OIDC_AUTH_ENABLED = true;
OIDC_SIGNUP_ENABLED = true;
OIDC_AUTH_ENABLED = "true";
OIDC_SIGNUP_ENABLED = "true";
OIDC_PROVIDER_NAME = "Pocket ID";
};
credentialsFile = config.sops.templates."mealie-env".path;
};
}

View file

@ -1,14 +0,0 @@
{
lib,
config,
inputs,
...
}: {
services.caddy = {
enable = true;
virtualHosts."wanderingcrow.net".extraConfig = ''
root ${inputs.the-nest.outputs.packages.x86_64-linux.default}
file_server
'';
};
}