16 lines
396 B
Nix
16 lines
396 B
Nix
{lib, ...}: {
|
|
home-manager.users.toast = {
|
|
programs.plasma.configFile = {
|
|
"baloofilerc"."General" = {
|
|
"exclude folders".shellExpand = true;
|
|
"exclude folders".value = with lib.strings;
|
|
concatStrings (
|
|
intersperse "," [
|
|
"$HOME/Documents/Repos"
|
|
"$HOME/Documents/Android"
|
|
]
|
|
);
|
|
};
|
|
};
|
|
};
|
|
}
|