mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-03 05:33:13 +01:00
1ad4e2d4af
This is my attempt at putting all modules in one directory to avoid having to remember whether a module was a part of applications/, desktop/, or terminal/.
23 lines
535 B
Nix
23 lines
535 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
|
|
'';
|
|
}];
|
|
}
|