refactor: improve formatting in configuration files

Adjusted the parameter formatting in `acme.nix` and `nginx.nix` for better readability and consistency. The changes include standardizing the indentation and spacing for multiline declarations.
This commit is contained in:
Harald Hoyer 2024-12-06 13:20:31 +01:00
parent 1dde4c769e
commit c9038f19e6
2 changed files with 7 additions and 2 deletions

View file

@ -17,7 +17,7 @@
credentialsFile = config.sops.secrets.internetbs.path; credentialsFile = config.sops.secrets.internetbs.path;
}; };
certs = { certs = {
"internal.hoyer.world" = { }; "internal.hoyer.world" = { };
}; };
}; };
} }

View file

@ -1,4 +1,9 @@
{ pkgs, lib, config, ... }: {
pkgs,
lib,
config,
...
}:
{ {
users.users.nginx.extraGroups = [ "acme" ]; users.users.nginx.extraGroups = [ "acme" ];
services.nginx = { services.nginx = {