add thunar #51

Merged
aaron merged 3 commits from feature/thunar into main 2026-05-29 20:40:49 +02:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit cb0645dd81 - Show all commits
+1
View File
@@ -21,6 +21,7 @@
../../modules/nixos/protonvpn.nix
../../modules/nixos/services.nix
../../modules/nixos/settings.nix
../../modules/nixos/thunar.nix
../../modules/nixos/steam.nix
../../modules/nixos/users.nix
];
+10
View File
@@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
# Enable Thunar and Tumbler thumbnailer service
programs.thunar.enable = true;
programs.tumbler.enable = true;
# Ensure Thunar can locate the thumbnailer extensions
environment.pathsToLink = [ "share/thumbnailers" ];
}