11 lines
182 B
Nix
11 lines
182 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
services.xserver = {
|
||
|
desktopManager.xfce.enable = true;
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
xfce.xfce4-pulseaudio-plugin
|
||
|
];
|
||
|
}
|