forked from extern/nix-config
3119b789f8
Alejandra is written in Rust, has more tests than nixfmt, and handles non-trivial code examples in Nix better.
23 lines
549 B
Nix
23 lines
549 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
|
|
'';
|
|
}
|
|
];
|
|
}
|