mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
fix: displayManager.defaultSession rename
This commit is contained in:
parent
f8d91c0555
commit
df81b3dc48
1 changed files with 6 additions and 4 deletions
|
|
@ -8,12 +8,14 @@
|
||||||
|
|
||||||
config = lib.mkIf config.local.DE.xfce.enable {
|
config = lib.mkIf config.local.DE.xfce.enable {
|
||||||
environment.systemPackages = [ pkgs.xfce.xfce4-whiskermenu-plugin ];
|
environment.systemPackages = [ pkgs.xfce.xfce4-whiskermenu-plugin ];
|
||||||
services.xserver = {
|
services = {
|
||||||
|
xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
desktopManager.xfce = {
|
desktopManager.xfce = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableScreensaver = true;
|
enableScreensaver = true;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
displayManager.defaultSession = "xfce";
|
displayManager.defaultSession = "xfce";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue