Added none to display mananger

This commit is contained in:
xeovalyte 2025-04-24 16:43:14 +02:00
parent 293fad6bf8
commit a28c86b74a
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:GWI1hq+MNKR2UOcvk7n9tekASXT8vyazK7vDF9Xyciw
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
];
settings = {
# display-manager = "cosmic-greeter";
display-manager = "none";
desktop-environments = {
cosmic.enable = false;
hyprland.enable = false;

View File

@ -7,7 +7,7 @@ let
in {
options = {
settings.display-manager = lib.mkOption {
type = lib.types.enum ["sddm" "cosmic-greeter" "gdm"];
type = lib.types.enum ["sddm" "cosmic-greeter" "gdm" "none"];
description = ''
Specify which display manager to use
'';