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