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