2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2025-01-09 11:51:14 +01:00
nixos-config/hosts/edison/desktop/xfce.nix

11 lines
182 B
Nix

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