diff options
| author | aristote <quentin.aristote@irif.fr> | 2024-04-22 12:20:52 +0200 |
|---|---|---|
| committer | aristote <quentin.aristote@irif.fr> | 2024-04-22 12:20:52 +0200 |
| commit | 3dac1b87810540c3dd913a4f60962b1ef3bc5fa2 (patch) | |
| tree | 38efffea992c13d3e3a0bde5e8b83bffc5008ff4 /modules/nixos/personal | |
| parent | fb31b52191acfde60326ca54d19d41b9fa7f281e (diff) | |
nixos: services.xserver.displayManager.defaultSession -> services.displayManager.defaultSession
Diffstat (limited to 'modules/nixos/personal')
| -rw-r--r-- | modules/nixos/personal/gui.nix | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/nixos/personal/gui.nix b/modules/nixos/personal/gui.nix index f7cdc57..2c01ee0 100644 --- a/modules/nixos/personal/gui.nix +++ b/modules/nixos/personal/gui.nix @@ -49,12 +49,14 @@ in { }; } (lib.mkIf cfg.i3.enable { - services.xserver = { - desktopManager.xfce = { - noDesktop = true; - enableXfwm = false; + services = { + xserver = { + desktopManager.xfce = { + noDesktop = true; + enableXfwm = false; + }; + windowManager.i3.enable = true; }; - windowManager.i3.enable = true; displayManager.defaultSession = "xfce+i3"; }; }) |
