Files
nixos/OLD CONFIGS/system-master_BAK/configuration/files.nix
T
2026-02-22 19:25:39 +01:00

29 lines
619 B
Nix
Executable File

{ pkgs, user, config, ... } :
{
environment.systemPackages = with pkgs; [
zip
unzip
p7zip
usbutils
udiskie
];
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-media-tags-plugin
thunar-volman
];
};
programs.file-roller.enable = true; # thunar zip support
programs.xfconf.enable = true; # to save thunar settings
services = {
gvfs.enable = true; # Mount, trash, and other functionalities
tumbler.enable = true; # Thumbnail support for images
udisks2.enable = true; # Auto mount usb drives
};
}