nixos/desktop/xfce-base.nix

29 lines
525 B
Nix

{pkgs, ...}: {
imports = [./sddm.nix];
environment.systemPackages = with pkgs; [
gsettings-desktop-schemas
pavucontrol
pamixer
pulseaudio
flameshot
];
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services = {
xserver = {
desktopManager = {
xterm.enable = false;
xfce.enable = true;
};
};
blueman.enable = true;
gvfs.enable = true;
tumbler.enable = true;
};
}