summaryrefslogtreecommitdiff
path: root/hosts/common/desktop/plasma.nix
blob: f06fe23abece1be4bfbc53deb3b741cc3942f4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
	config,
	pkgs,
	...
}:
if config.sys.desktop == "plasma"
then {
	services.xserver = {
		displayManager.sddm.enable = true;
		desktopManager.plasma5 = {
			enable = true;
			excludePackages = with pkgs.libsForQt5; [
				elisa
				khelpcenter
				oxygen
				plasma-browser-integration
				print-manager
			];
		};
	};
}
else {}