mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 18:23:20 +01:00
43a07cc8d9
Neither nixfmt nor alejandra support the "standard" way to syntax highlight multi-line strings in Nix, so nixpkgs-fmt is the only viable solution.
23 lines
552 B
Nix
23 lines
552 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
|
|
'';
|
|
}
|
|
];
|
|
}
|