mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
b310bb6e6d
Now there is no need for a packages directory since all the packages I maintain are upstreamed.
14 lines
377 B
Nix
14 lines
377 B
Nix
{ pkgs, ... }: {
|
|
programs.thunar.enable = true;
|
|
services.tumbler.enable = true; # Thumbnail support
|
|
programs.thunar.plugins = with pkgs.xfce; [ thunar-volman ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
xfce.exo # Open with kitty support
|
|
glib
|
|
];
|
|
|
|
services.gvfs.enable = true; # Trash support
|
|
services.gnome.gnome-keyring.enable = true; # Mount support
|
|
}
|