Fix "Hide files on plasma desktop"

This commit is contained in:
Knyffen 2024-08-24 16:12:44 +02:00
parent 6d85bfc447
commit 7f929937bf
2 changed files with 11 additions and 4 deletions

View File

@ -16,6 +16,10 @@
programs.plasma = { programs.plasma = {
enable = true; enable = true;
# Reset all non-nix plasma configutation
# Files can be excluded via programs.plasma.resetFilesExclude.
# See https://github.com/nix-community/plasma-manager/blob/trunk/modules/files.nix
overrideConfig = true; overrideConfig = true;
}; };
} }

View File

@ -12,9 +12,12 @@
"L ${config.variables.homedir}/.local/share/color-schemes/KritaDarkOrange.colors - - - - ${config.variables.flakedir}/shared/home_manager/assets/KritaDarkOrange.colors" "L ${config.variables.homedir}/.local/share/color-schemes/KritaDarkOrange.colors - - - - ${config.variables.flakedir}/shared/home_manager/assets/KritaDarkOrange.colors"
]; ];
# Show no files on the desktop programs.plasma.resetFilesExclude = [
programs.plasma.configFile = { "plasmarc"
"plasmara"."Wallpapers"."usersWallpapers" = ""; ];
}; # # Show no files on the desktop
# programs.plasma.configFile = {
# "plasmarc"."Wallpapers"."usersWallpapers" = "";
# };
} }