35 lines
701 B
Nix
35 lines
701 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;
|
|
enableXfwm = false;
|
|
noDesktop = true;
|
|
};
|
|
};
|
|
windowManager.bspwm.enable = true;
|
|
displayManager.defaultSession = "xfce+bspwm";
|
|
};
|
|
blueman.enable = true;
|
|
gvfs.enable = true;
|
|
tumbler.enable = true;
|
|
};
|
|
}
|