Regenerated

This commit is contained in:
2026-03-19 15:46:19 +00:00
parent d3665ec855
commit eb8309534b
31 changed files with 8 additions and 1638 deletions
+8 -6
View File
@@ -1149,7 +1149,7 @@ in
# Top-level toggle
options.enableThunar = lib.mkEnableOption "Enable Thunar file manager";
# Config assignments
# Only apply config if enabled
config = lib.mkIf enableProgram {
# Install Thunar and related packages system-wide
environment.systemPackages = [
@@ -1158,11 +1158,13 @@ in
pkgs.xarchiver
];
# Optional: any user-specific tweaks can go here, e.g. environment variables
home.sessionVariables = {
FILE_MANAGER = "thunar";
USERNAME = username;
};
# Remove invalid top-level 'home' reference
# If you want sessionVariables, define them in Home Manager instead
# Example for Home Manager:
# home-manager.users.${username}.sessionVariables = {
# FILE_MANAGER = "thunar";
# USERNAME = username;
# };
};
}
#+END_SRC