diff options
| author | Dominik Kaiser | 2025-08-21 16:19:03 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2025-08-21 16:19:03 +0200 |
| commit | ff760806a4f6374aa85e61dbd376b4d3c06b82c1 (patch) | |
| tree | e2ba29645c5f402df0bbb92a90717c24c4323bec /hosts/sol/configuration.nix | |
| parent | a3f075cc879be241659507ee6d046bcc44b6bc81 (diff) | |
| download | nixos-ff760806a4f6374aa85e61dbd376b4d3c06b82c1.tar.gz nixos-ff760806a4f6374aa85e61dbd376b4d3c06b82c1.zip | |
Remove cinnamon/lightdm and add ly as displayManager
Diffstat (limited to 'hosts/sol/configuration.nix')
| -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 = { |
