nixos/desktop/xfce-base.nix

29 lines
525 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{pkgs, ...}: {
imports = [./sddm.nix];
environment.systemPackages = with pkgs; [
gsettings-desktop-schemas
pavucontrol
pamixer
pulseaudio
flameshot
];
programs.thunar = {
2023-04-10 22:06:23 +01:00
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services = {
xserver = {
desktopManager = {
xterm.enable = false;
xfce.enable = true;
2023-04-10 22:06:23 +01:00
};
};
blueman.enable = true;
gvfs.enable = true;
tumbler.enable = true;
2023-04-10 22:06:23 +01:00
};
}