nix-config/modules/scripts/build.nix

17 lines
321 B
Nix
Raw Normal View History

2025-09-04 21:02:57 +01:00
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "build";
text = ''
test -r book/index.adoc && exec build-adoc "$@"
test -x build && exec ./build "$@"
'';
})
];
};
}