Compare commits

...

2 Commits

Author SHA1 Message Date
henrov bdc9e637b0 Working on reshuffling 2026-03-19 13:49:36 +00:00
henrov 0fbdd8e1b4 deleted generated files 2026-03-19 13:49:36 +00:00
2 changed files with 20 additions and 6 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
+10 -3
View File
@@ -4,14 +4,21 @@ 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
];
};
}