graphical/plasma: add kwallet warning to plasma.startOnFirstTTY
This commit is contained in:
parent
fbf60eccd6
commit
8d6fcb7fe0
1 changed files with 11 additions and 1 deletions
|
|
@ -13,7 +13,17 @@ in
|
||||||
options.nixowos.graphical.${name} = {
|
options.nixowos.graphical.${name} = {
|
||||||
enable = lib.mkEnableOption name;
|
enable = lib.mkEnableOption name;
|
||||||
|
|
||||||
startOnFirstTTY = lib.mkEnableOption "${name} auto start from tty1";
|
startOnFirstTTY = lib.mkOption {
|
||||||
|
type = lib.types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Whether to start ${name} automatically from tty1.
|
||||||
|
|
||||||
|
note: this replaces sddm, which also means kwallet will not be unlocked automatically.
|
||||||
|
kwallet is responsible for storing secrets, using your password for encryption.
|
||||||
|
It's used by browsers, NetworkManager, and many more.
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue