mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 09:33:41 +00:00
mingetty: Don't make restartIfChanged optional
This commit is contained in:
parent
d809a9e6b2
commit
85997a6692
@ -46,14 +46,6 @@ with pkgs.lib;
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
dontRestart = mkOption {
|
|
||||||
default = false;
|
|
||||||
description = ''
|
|
||||||
Don't restart mingetty processes as this will result in active
|
|
||||||
sessions to be logged out, for example on activation of the system's
|
|
||||||
configuration.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
@ -77,7 +69,7 @@ with pkgs.lib;
|
|||||||
|
|
||||||
exec = "mingetty --loginprog=${pkgs.shadow}/bin/login --noclear ${tty}";
|
exec = "mingetty --loginprog=${pkgs.shadow}/bin/login --noclear ${tty}";
|
||||||
|
|
||||||
restartIfChanged = !config.services.mingetty.dontRestart;
|
restartIfChanged = false;
|
||||||
|
|
||||||
environment.LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
|
environment.LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user