20 lines
320 B
Nix
20 lines
320 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.desktopManager.cosmic = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
|
|
services.displayManager.cosmic-greeter.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-keyring
|
|
networkmanagerapplet
|
|
seahorse
|
|
wayland-utils
|
|
wl-clipboard
|
|
xwayland
|
|
];
|
|
}
|