Run nixfmt-rfc-style on repository and add it to Zed config

This commit is contained in:
Jo 2025-05-26 18:06:37 +02:00
parent f5e5adb2fd
commit 45494079c5
41 changed files with 441 additions and 240 deletions

View file

@ -2,13 +2,17 @@
lib,
self,
...
}: let
}:
let
inherit (lib) types;
inherit (self) namespace;
inherit (self.lib) mkOpt;
in {
in
{
options.${namespace}.services = {
domain = mkOpt types.str "thevoid.cafe" "The main system domain, used for exposing services.";
mail = mkOpt types.str "system@thevoid.cafe" "The main system administration E-Mail, used for logs and services.";
mail =
mkOpt types.str "system@thevoid.cafe"
"The main system administration E-Mail, used for logs and services.";
};
}