From 086b5c370fc30652f4ddf33f95c41f375064b374 Mon Sep 17 00:00:00 2001 From: Lucas Desgouilles Date: Tue, 22 Sep 2026 17:02:58 +0200 Subject: [PATCH 1/2] fix: eval error introduced in #265 --- modules/graphical-interface/plasma.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/graphical-interface/plasma.nix b/modules/graphical-interface/plasma.nix index fcf0c34..3cf6177 100644 --- a/modules/graphical-interface/plasma.nix +++ b/modules/graphical-interface/plasma.nix @@ -36,7 +36,9 @@ in services.displayManager.sddm = { enable = true; settings = mkIf config.securix.admins.enable { - Users.HideUsers = lib.concatMapStringsSep "," (admin: admin.name) config.securix.admins.accounts; + Users.HideUsers = lib.concatMapAttrsStringsSep "," ( + _: admin: admin.name + ) config.securix.admins.accounts; }; }; From 9cca16c0c4f73b4405d64f226c68d6122377ad3f Mon Sep 17 00:00:00 2001 From: Lucas Desgouilles Date: Tue, 22 Sep 2026 17:22:36 +0200 Subject: [PATCH 2/2] tests/minimal: include the KDE flavor instead of sway We more commonly deploy the KDE flavor, it's better if errors around it are caught early --- tests/minimal.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/minimal.nix b/tests/minimal.nix index 6ab7abb..3e46906 100644 --- a/tests/minimal.nix +++ b/tests/minimal.nix @@ -11,7 +11,7 @@ let modules = [ { securix = { - graphical-interface.variant = "sway"; + graphical-interface.variant = "kde"; self = { mainDisk = "/dev/nvme0n1"; machine = {