nixos/redmine: Remove some spurious empty lines

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer 2025-05-25 02:41:26 +02:00
parent d7f1102f04
commit 38d4b809a1

View file

@ -272,7 +272,6 @@ in
# implementation # implementation
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
assertions = [ assertions = [
{ {
assertion = assertion =
@ -486,7 +485,6 @@ in
SystemCallArchitectures = "native"; SystemCallArchitectures = "native";
UMask = 27; UMask = 27;
}; };
}; };
users.users = lib.optionalAttrs (cfg.user == "redmine") { users.users = lib.optionalAttrs (cfg.user == "redmine") {
@ -500,7 +498,6 @@ in
users.groups = lib.optionalAttrs (cfg.group == "redmine") { users.groups = lib.optionalAttrs (cfg.group == "redmine") {
redmine.gid = config.ids.gids.redmine; redmine.gid = config.ids.gids.redmine;
}; };
}; };
meta.maintainers = with lib.maintainers; [ felixsinger ]; meta.maintainers = with lib.maintainers; [ felixsinger ];