nixos-config/hosts/edison/desktop/xfce.nix

11 lines
182 B
Nix
Raw Normal View History

2024-05-28 23:04:44 +02:00
{ config, pkgs, lib, ... }:
{
services.xserver = {
desktopManager.xfce.enable = true;
};
environment.systemPackages = with pkgs; [
xfce.xfce4-pulseaudio-plugin
];
}