mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
18 lines
371 B
Nix
18 lines
371 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
xclip
|
|
wl-clipboard
|
|
kwin-blishhud-shader
|
|
];
|
|
environment.plasma6.excludePackages = with pkgs; [konsole];
|
|
services = {
|
|
displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
xserver = {
|
|
enable = true;
|
|
};
|
|
desktopManager.plasma6.enable = true;
|
|
};
|
|
}
|