mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2025-01-09 11:51:14 +01:00
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
|
|
];
|
|
}
|