systemd-logind: fix config file header: [Logind] => [Login]

man logind.conf clearly states that the header is [Login] (no 'd').
Without this fix services.logind.extraConfig does not take effect
because logind ignores the invalidly named section.
This commit is contained in:
Bjørn Forsman 2013-03-02 19:45:47 +01:00
parent 7e10bcb4fd
commit ec2378f07b

View file

@ -520,7 +520,7 @@ in
}
{ source = pkgs.writeText "logind.conf"
''
[Logind]
[Login]
${config.services.logind.extraConfig}
'';
target = "systemd/logind.conf";