mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
Merge pull request #60776 from alyssais/xerror
nixos/xserver: improve DM error message when X off
This commit is contained in:
commit
7261ffc18e
|
@ -189,6 +189,11 @@ in
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
assertions = [
|
assertions = [
|
||||||
|
{ assertion = xcfg.enable;
|
||||||
|
message = ''
|
||||||
|
LightDM requires services.xserver.enable to be true
|
||||||
|
'';
|
||||||
|
}
|
||||||
{ assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null;
|
{ assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null;
|
||||||
message = ''
|
message = ''
|
||||||
LightDM auto-login requires services.xserver.displayManager.lightdm.autoLogin.user to be set
|
LightDM auto-login requires services.xserver.displayManager.lightdm.autoLogin.user to be set
|
||||||
|
|
|
@ -195,6 +195,11 @@ in
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
assertions = [
|
assertions = [
|
||||||
|
{ assertion = xcfg.enable;
|
||||||
|
message = ''
|
||||||
|
SDDM requires services.xserver.enable to be true
|
||||||
|
'';
|
||||||
|
}
|
||||||
{ assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null;
|
{ assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null;
|
||||||
message = ''
|
message = ''
|
||||||
SDDM auto-login requires services.xserver.displayManager.sddm.autoLogin.user to be set
|
SDDM auto-login requires services.xserver.displayManager.sddm.autoLogin.user to be set
|
||||||
|
@ -264,8 +269,8 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.etc."sddm.conf".source = cfgFile;
|
environment.etc."sddm.conf".source = cfgFile;
|
||||||
environment.pathsToLink = [
|
environment.pathsToLink = [
|
||||||
"/share/sddm"
|
"/share/sddm"
|
||||||
];
|
];
|
||||||
|
|
||||||
users.groups.sddm.gid = config.ids.gids.sddm;
|
users.groups.sddm.gid = config.ids.gids.sddm;
|
||||||
|
|
Loading…
Reference in a new issue