mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
9 lines
235 B
Nix
9 lines
235 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
xclip
|
|
wl-clipboard
|
|
];
|
|
services.xserver.enable = true;
|
|
services.xserver.displayManager.gdm.enable = true;
|
|
services.desktopManager.plasma6.enable = true;
|
|
}
|