NixOS/modules/scripts/manage-library.nix
2024-06-07 17:07:21 -06:00

19 lines
390 B
Nix

{
config,
lib,
pkgs,
...
}:
{
imports = [ ./base.nix ];
config.my.scripts.manage-library = {
enable = true;
install = true;
service = true;
name = "manage-library";
timer = "00:30";
description = "scans the library directory and sorts files";
package = pkgs.writeScriptBin "manage-library" (builtins.readFile ../../scripts/manage-library.sh);
};
}