deleted generated files

This commit is contained in:
2026-03-19 13:49:36 +00:00
parent 5a0b02b5f6
commit 0fbdd8e1b4
29 changed files with 10 additions and 1337 deletions
+10 -3
View File
@@ -1003,15 +1003,22 @@ let
enableProgram = config.enableThunar or false;
in
{
# Top-level toggle
options.enableThunar = lib.mkEnableOption "Enable Thunar file manager";
# Config assignments
config = lib.mkIf enableProgram {
myApps.thunar = {
# Replace myApps.thunar with programs.thunar (or your own flat container)
programs.thunar = {
user = config.defaultUser or "henrov";
# Add extra Thunar config if needed
# Add extra Thunar options here
};
packages = [ pkgs.thunar pkgs.thunar-plugins pkgs.xarchiver ];
environment.systemPackages = [
pkgs.thunar
pkgs.thunar-plugins
pkgs.xarchiver
];
};
}
#+END_SRC