mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
chore: move meta option to top level in many modules
This commit is contained in:
parent
f7b20f6d75
commit
e0d1b49a46
14 changed files with 35 additions and 39 deletions
|
@ -369,11 +369,10 @@ in
|
|||
;
|
||||
inherit fileSystems definitionsDirectory mkfsEnv;
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
nikstur
|
||||
willibutz
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
nikstur
|
||||
willibutz
|
||||
];
|
||||
}
|
||||
|
|
|
@ -140,7 +140,7 @@ in
|
|||
systemd.slices.isolate = {
|
||||
description = "Isolate Sandbox Slice";
|
||||
};
|
||||
|
||||
meta.maintainers = with maintainers; [ virchau13 ];
|
||||
};
|
||||
|
||||
meta.maintainers = with maintainers; [ virchau13 ];
|
||||
}
|
||||
|
|
|
@ -121,7 +121,5 @@ in
|
|||
sshAgentAuth = true;
|
||||
usshAuth = true;
|
||||
};
|
||||
|
||||
meta.maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -125,7 +125,7 @@ in
|
|||
networking.firewall = lib.mkIf cfg.openFirewall {
|
||||
allowedTCPPorts = [ cfg.port ];
|
||||
};
|
||||
|
||||
meta.maintainers = [ lib.maintainers.cafkafk ];
|
||||
};
|
||||
|
||||
meta.maintainers = [ lib.maintainers.cafkafk ];
|
||||
}
|
||||
|
|
|
@ -180,12 +180,12 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
thoughtpolice
|
||||
vifino
|
||||
];
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
thoughtpolice
|
||||
vifino
|
||||
];
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = [ chronyPkg ];
|
||||
|
||||
users.groups.chrony.gid = config.ids.gids.chrony;
|
||||
|
|
|
@ -126,9 +126,9 @@ in
|
|||
|
||||
###### implementation
|
||||
|
||||
config = mkIf config.services.ntp.enable {
|
||||
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
|
||||
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
|
||||
|
||||
config = mkIf config.services.ntp.enable {
|
||||
# Make tools such as ntpq available in the system path.
|
||||
environment.systemPackages = [ pkgs.ntp ];
|
||||
services.timesyncd.enable = mkForce false;
|
||||
|
|
|
@ -58,8 +58,9 @@ in
|
|||
|
||||
###### implementation
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
meta.maintainers = with lib.maintainers; [ thoughtpolice ];
|
||||
services.timesyncd.enable = mkForce false;
|
||||
|
||||
# Add ntpctl to the environment for status checking
|
||||
|
|
|
@ -222,13 +222,13 @@ in
|
|||
Type = "forking";
|
||||
};
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
# Server side
|
||||
lschuermann
|
||||
# Client side
|
||||
das_j
|
||||
];
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
# Server side
|
||||
lschuermann
|
||||
# Client side
|
||||
das_j
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ in
|
|||
RestartSec = "5s";
|
||||
};
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ malte-v ];
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ malte-v ];
|
||||
}
|
||||
|
|
|
@ -87,9 +87,10 @@ in
|
|||
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ _0x4A6F ];
|
||||
|
||||
config = mkIf cfg.enable (mkMerge [
|
||||
{
|
||||
meta.maintainers = with lib.maintainers; [ _0x4A6F ];
|
||||
|
||||
systemd.services.xandikos = {
|
||||
description = "A Simple Calendar and Contact Server";
|
||||
|
|
|
@ -92,7 +92,6 @@ in
|
|||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.port ];
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ jaculabilis ];
|
||||
};
|
||||
meta.maintainers = with lib.maintainers; [ jaculabilis ];
|
||||
}
|
||||
|
|
|
@ -389,7 +389,6 @@ in
|
|||
};
|
||||
};
|
||||
users.groups = mkIf (cfg.group == "immich") { immich = { }; };
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ jvanbruegge ];
|
||||
};
|
||||
meta.maintainers = with lib.maintainers; [ jvanbruegge ];
|
||||
}
|
||||
|
|
|
@ -108,11 +108,11 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ fliegendewurst ];
|
||||
|
||||
config = lib.mkIf cfg.enable (
|
||||
lib.mkMerge [
|
||||
{
|
||||
meta.maintainers = with lib.maintainers; [ fliegendewurst ];
|
||||
|
||||
users.groups.trilium = { };
|
||||
users.users.trilium = {
|
||||
description = "Trilium User";
|
||||
|
|
|
@ -111,8 +111,7 @@ in
|
|||
--config=${cfg.configFile} \
|
||||
--output="$out/${config.system.boot.loader.ukiFile}"
|
||||
'';
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ nikstur ];
|
||||
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ nikstur ];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue