library-report + manage-library fixes + timer

This commit is contained in:
2024-11-06 12:53:02 -06:00
parent c5155d3117
commit 31dea22e57
3 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, lib, ... }:
{
imports = [ ./base.nix ];
config.my.scripts.library-report = {
enable = lib.mkDefault false;
install = true;
service = false;
name = "library-report";
package = pkgs.writeScriptBin "library-report" (builtins.readFile ../../scripts/library-report.sh);
};
}