forked from extern/nix-config
This makes it easier to see all the custom packages in the repository and reduces the amount of nested directories.
21 lines
533 B
Nix
21 lines
533 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.thunar.enable = true;
|
|
services.tumbler.enable = true; # Thumbnail support
|
|
environment.systemPackages = with pkgs; [
|
|
xfce.exo # Open with kitty support
|
|
glib
|
|
(pkgs.callPackage ../../packages/go-thumbnailer { })
|
|
];
|
|
services.gvfs.enable = true; # Trash support
|
|
services.gnome.gnome-keyring.enable = true; # Mount support
|
|
|
|
home-manager.sharedModules = [{
|
|
xdg.configFile."xfce4/helpers.rc".text = ''
|
|
TerminalEmulator=kitty
|
|
TerminalEmulatorDismissed=true
|
|
'';
|
|
}];
|
|
}
|