21 lines
297 B
Nix
21 lines
297 B
Nix
{ config, lib, inputs, pkgs, ... }: {
|
|
|
|
programs.xfconf.enable = true;
|
|
|
|
programs.thunar = {
|
|
enable = true;
|
|
|
|
plugins = with pkgs; [
|
|
thunar-archive-plugin
|
|
thunar-vcs-plugin
|
|
thunar-volman
|
|
];
|
|
};
|
|
|
|
services = {
|
|
gvfs.enable = true;
|
|
tumbler.enable = true;
|
|
};
|
|
|
|
}
|
|
|