Merge pull request #303114 from K900/sddm-no-x11

nixos/sddm: allow disabling the rest of X11
This commit is contained in:
K900 2024-04-10 22:22:20 +03:00 committed by GitHub
commit 85d3f97277
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ let
HideShells = "/run/current-system/sw/bin/nologin";
};
X11 = {
X11 = optionalAttrs xcfg.enable {
MinimumVT = if xcfg.tty != null then xcfg.tty else 7;
ServerPath = toString xserverWrapper;
XephyrPath = "${pkgs.xorg.xorgserver.out}/bin/Xephyr";