Create home-manager module for packer

This commit is contained in:
2024-04-12 12:51:08 +02:00
parent 08a823cb06
commit ffab35d8fb
4 changed files with 142 additions and 59 deletions

21
package.nix Normal file
View File

@@ -0,0 +1,21 @@
{
pkgs,
clj-nix,
...
}:
clj-nix.lib.mkCljApp {
inherit pkgs;
modules = [
# Option list:
# https://jlesquembre.github.io/clj-nix/options/
{
projectSrc = ./.;
name = "packer";
main-ns = "packer.main";
nativeImage.enable = false;
# customJdk.enable = true;
}
];
}