26 lines
441 B
Nix
Executable File
26 lines
441 B
Nix
Executable File
{ config, pkgs, lib, ... }: {
|
|
programs = {
|
|
dconf.enable = true;
|
|
kdeconnect.enable = true;
|
|
};
|
|
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
plasma-browser-integration
|
|
konsole
|
|
oxygen
|
|
kate
|
|
];
|
|
|
|
services = {
|
|
desktopManager.plasma6.enable = true;
|
|
displayManager = {
|
|
sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
};
|
|
|
|
libinput.enable = true;
|
|
};
|
|
}
|