12 lines
304 B
Nix
12 lines
304 B
Nix
{ 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);
|
|
};
|
|
}
|