From bb1cae8a9caf4808485f2f684423949813a7e0a2 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Tue, 27 Feb 2024 20:09:11 -0800 Subject: [PATCH] use sddm for now --- extras/cosmic.nix | 53 +++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/extras/cosmic.nix b/extras/cosmic.nix index 0245a8d..63c9dc0 100644 --- a/extras/cosmic.nix +++ b/extras/cosmic.nix @@ -1,30 +1,29 @@ {pkgs, ...}: { - environment.systemPackages = with pkgs; [ - cosmic-bg - cosmic-applets - cosmic-applibrary - cosmic-comp - cosmic-edit - cosmic-files - cosmic-greeter - cosmic-icons - cosmic-launcher - cosmic-notifications - cosmic-osd - cosmic-panel - cosmic-protocols - cosmic-randr - cosmic-screenshot - cosmic-session - cosmic-settings - cosmic-settings-daemon - cosmic-term - cosmic-workspaces-epoch - xdg-desktop-portal-cosmic - ]; - services.xserver.displayManager.cosmic-greeter.enable = true; + # environment.systemPackages = with pkgs; [ + # cosmic-bg + # cosmic-applets + # cosmic-applibrary + # cosmic-comp + # cosmic-edit + # cosmic-files + # cosmic-greeter + # cosmic-icons + # cosmic-launcher + # cosmic-notifications + # cosmic-osd + # cosmic-panel + # cosmic-protocols + # cosmic-randr + # cosmic-screenshot + # cosmic-session + # cosmic-settings + # cosmic-settings-daemon + # cosmic-term + # cosmic-workspaces-epoch + # xdg-desktop-portal-cosmic + # ]; + services.xserver.displayManager.cosmic-greeter.enable = false; + services.xserver.displayManager.sddm.enable = true; services.xserver.desktopManager.cosmic.enable = true; - services.pipewire = { - enable = false; - }; + services.xserver.desktopManager.plasma5.enable = true; }