1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 09:36:20 +09:00

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