Create home-manager module for packer
This commit is contained in:
21
package.nix
Normal file
21
package.nix
Normal 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;
|
||||
}
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user