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:
parent
1dde4c769e
commit
c9038f19e6
|
@ -17,7 +17,7 @@
|
||||||
credentialsFile = config.sops.secrets.internetbs.path;
|
credentialsFile = config.sops.secrets.internetbs.path;
|
||||||
};
|
};
|
||||||
certs = {
|
certs = {
|
||||||
"internal.hoyer.world" = { };
|
"internal.hoyer.world" = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
users.users.nginx.extraGroups = [ "acme" ];
|
users.users.nginx.extraGroups = [ "acme" ];
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
|
|
Loading…
Reference in a new issue