Files
nix-config/modules/nixos/desktop/thunar.nix

16 lines
260 B
Nix

{
flake.modules.nixos.desktop =
{ pkgs, ... }:
{
services.gvfs.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs; [
thunar-archive-plugin
thunar-volman
];
};
};
}