30 lines
652 B
Nix
30 lines
652 B
Nix
{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;
|
|
services.xserver.desktopManager.cosmic.enable = true;
|
|
services.pipewire = {
|
|
enable = false;
|
|
};
|
|
}
|