mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
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:
parent
7e10bcb4fd
commit
ec2378f07b
|
@ -520,7 +520,7 @@ in
|
|||
}
|
||||
{ source = pkgs.writeText "logind.conf"
|
||||
''
|
||||
[Logind]
|
||||
[Login]
|
||||
${config.services.logind.extraConfig}
|
||||
'';
|
||||
target = "systemd/logind.conf";
|
||||
|
|
Loading…
Reference in a new issue