22 lines
502 B
Nix
22 lines
502 B
Nix
{pkgs, ...}: {
|
|
services.blueman.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
gsettings-desktop-schemas
|
|
pavucontrol
|
|
pamixer
|
|
pulseaudio
|
|
grim
|
|
slurp
|
|
];
|
|
security.pam.services.swaylock = {};
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
];
|
|
};
|
|
services.gvfs.enable = true; # Mount, trash, and other functionalities
|
|
services.tumbler.enable = true; # Thumbnail support for images
|
|
}
|