13 lines
230 B
Nix
13 lines
230 B
Nix
{ pkgs, ... }: {
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
elisa
|
|
konsole
|
|
kate
|
|
spectacle
|
|
];
|
|
|
|
services.desktopManager.plasma6 = {
|
|
enable = true;
|
|
enableQt5Integration = true;
|
|
};
|
|
}
|