summary refs log tree commit diff stats
path: root/desktop/xfce.nix
blob: db2b65c776051d2c45e7ad0d46b89f5e06cd13ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

{
	services = {
		blueman.enable = true;
		xserver = {
			enable = true;
			desktopManager.xfce.enable = true;
		};
	};
}