added modules

This commit is contained in:
fwastring 2025-09-09 21:02:29 +02:00
parent 7bc5e14a6e
commit c5fc9d6c85
4 changed files with 78 additions and 7 deletions

7
moduler/kitchenowl.nix Normal file
View file

@ -0,0 +1,7 @@
{ lib, config, pkgs, ... }:
let
cfg = config.services.kitchenowl;
in
{
}

View file

@ -3,14 +3,17 @@
}:
{
networking.firewall = {
allowedTCPPorts = [ 80 443 ];
};
security.acme = {
acceptTerms = true;
defaults.email = "fredrik@wastring.com";
certs."pass.wastring.com" = {
dnsProvider = "gandiv5";
webroot = null;
credentialsFile = /run/secrets/gandi_key;
dnsPropagationCheck = true;
credentialsFile = /run/secrets/gandi_key;
dnsPropagationCheck = true;
};
};
services.nginx = {
@ -42,7 +45,6 @@
ROCKET_PORT = 8222;
DOMAIN = "https://pass.wastring.com";
SIGNUPS_ALLOWED = true;
LOG_FILE = "/var/lib/bitwarden_rs/access.log";
};
};
}