From 8d6fcb7fe0216534e2df249418a9f2f6b2aaf4de Mon Sep 17 00:00:00 2001 From: Elec3137 Date: Mon, 23 Feb 2026 20:20:47 -0800 Subject: [PATCH] graphical/plasma: add kwallet warning to plasma.startOnFirstTTY --- graphical/plasma.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/graphical/plasma.nix b/graphical/plasma.nix index 4dc853f..5a2af8c 100644 --- a/graphical/plasma.nix +++ b/graphical/plasma.nix @@ -13,7 +13,17 @@ in options.nixowos.graphical.${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 {