style: fix indentation and spacing issues

This commit corrects the code's formatting in two parts:
1) It normalizes the indentation in the BindPaths block under aesmd_dcap/default.nix.
2) It also removes the extra space before "DE" in the default_phone_region setting in nextcloud.nix.
This commit is contained in:
Harald Hoyer 2024-06-22 15:12:57 +02:00
parent dc2b6a41a5
commit 6d4be557f8
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ in
"/etc/sgx_default_qcnl.conf" "/etc/sgx_default_qcnl.conf"
]; ];
BindPaths = [ BindPaths = [
"/dev/log" "/dev/log"
]; ];
}; };
}; };

View file

@ -13,7 +13,7 @@
settings = { settings = {
mail_smtpmode = "sendmail"; mail_smtpmode = "sendmail";
mail_sendmailmode = "pipe"; mail_sendmailmode = "pipe";
default_phone_region = "DE"; default_phone_region = "DE";
}; };
phpOptions = { phpOptions = {
upload_max_filesize = lib.mkForce "1G"; upload_max_filesize = lib.mkForce "1G";