This commit is contained in:
mjallen18
2025-05-08 15:37:21 -05:00
parent 6a720e6bb6
commit b1c1d6f04c
5 changed files with 109 additions and 38 deletions

View File

@@ -0,0 +1,18 @@
{ lib, ... }:
{
specialisation.cosmic.configuration = {
services = {
desktopManager.cosmic.enable = lib.mkForce true;
displayManager.cosmic-greeter.enable = lib.mkForce true;
# Disable Gnome
xserver = {
desktopManager.gnome.enable = lib.mkForce false;
# Enable Desktop Environment.
displayManager = {
gdm.enable = lib.mkForce false;
gdm.wayland = lib.mkForce false;
};
};
};
};
}