Regenerated

This commit is contained in:
2026-03-22 18:53:17 +00:00
parent 0771c5b3f9
commit 9adb27c91d
33 changed files with 9 additions and 1513 deletions
+9 -7
View File
@@ -1102,20 +1102,22 @@ in
** =generated/modules/apps/thunar.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/modules/apps/thunar.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, config, ... }:
{ pkgs, config, lib, ... }:
let
username = config.defaultUser or "henrov";
in
{
# Install Thunar and related packages system-wide
environment.systemPackages = [
pkgs.thunar
pkgs.thunar-plugins
pkgs.xarchiver
# Install Thunar and essential plugins
environment.systemPackages = with pkgs; [
thunar # main file manager
thunar-archive-plugin # archive support (zip, tar, etc.)
thunar-volman # auto-mount removable drives
gvfs # virtual filesystem for external drives
xarchiver # optional GUI archive manager
];
# If you want session variables for Thunar, do it via Home Manager
# Home Manager session variables
home-manager.users.${username} = {
home.sessionVariables = {
FILE_MANAGER = "thunar";