22 lines
495 B
Nix
22 lines
495 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
dconf.enable = true;
|
|
xfconf.enable = true;
|
|
thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [
|
|
thunar-volman
|
|
thunar-archive-plugin
|
|
thunar-media-tags-plugin
|
|
];
|
|
};
|
|
};
|
|
services.gvfs.enable = true;
|
|
services.tumbler.enable = true;
|
|
home-manager.users.krizej.home.packages = with pkgs; [
|
|
ffmpegthumbnailer
|
|
gsettings-desktop-schemas
|
|
xarchiver # not really thunar but can be here ig
|
|
];
|
|
}
|