diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/sol/configuration.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/hosts/sol/configuration.nix b/hosts/sol/configuration.nix index d20f3af..98f7b4f 100644 --- a/hosts/sol/configuration.nix +++ b/hosts/sol/configuration.nix @@ -30,11 +30,17 @@ # Enable the X11 windowing system. services.xserver.enable = true; - # Enable the Cinnamon Desktop Environment. - services.xserver.displayManager.lightdm.enable = true; - services.xserver.desktopManager.cinnamon.enable = true; + services.displayManager = { + ly.enable = true; + defaultSession = "stumpwm"; + }; services.xserver.windowManager.stumpwm.enable = true; + xdg.portal = { + enable = true; + extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; + }; + services.autorandr = { enable = true; profiles = { |
