nix-config/modules/plasma/default.nix
2024-06-24 17:17:49 +02:00

17 lines
319 B
Nix

{ pkgs, lib, config, ... }: lib.mkIf (config.withPlasma) {
services = {
desktopManager.plasma6 = {
enable = true;
};
};
environment = {
plasma6.excludePackages = with pkgs.kdePackages; [
plasma-browser-integration
konsole
oxygen
];
};
programs.dconf.enable = true;
}