Files
nixos/modules/desktop/cosmic.nix
T
2026-06-10 18:36:32 +02:00

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
];
}