Files
nix-dotfiles/home/config/downloads-sorter.nix

14 lines
171 B
Nix

{ ... }:
{
services.downloads-sorter = {
enable = true;
mappings = {
"pictures" = [
"*.jpg"
"*.png"
"*.gif"
];
};
};
}