mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
kmscon service: add extraOptions option
This commit is contained in:
parent
1979034956
commit
d396f1e99b
@ -32,6 +32,13 @@ in {
|
||||
default = "";
|
||||
example = "font-size=14";
|
||||
};
|
||||
|
||||
extraOptions = mkOption {
|
||||
description = "Extra flags to pass to kmscon.";
|
||||
type = types.separatedString " ";
|
||||
default = "";
|
||||
example = "--term xterm-256color";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@ -53,7 +60,7 @@ in {
|
||||
ConditionPathExists=/dev/tty0
|
||||
|
||||
[Service]
|
||||
ExecStart=${pkgs.kmscon}/bin/kmscon "--vt=%I" --seats=seat0 --no-switchvt --configdir ${configDir} --login -- ${pkgs.shadow}/bin/login -p
|
||||
ExecStart=${pkgs.kmscon}/bin/kmscon "--vt=%I" ${cfg.extraOptions} --seats=seat0 --no-switchvt --configdir ${configDir} --login -- ${pkgs.shadow}/bin/login -p
|
||||
UtmpIdentifier=%I
|
||||
TTYPath=/dev/%I
|
||||
TTYReset=yes
|
||||
|
Loading…
Reference in New Issue
Block a user