Figuring out how to integrate with nixos cfg.

This commit is contained in:
2022-07-01 11:40:44 -07:00
parent 267efb83c8
commit e61f18116c
3 changed files with 104 additions and 25 deletions
+7 -1
View File
@@ -32,5 +32,11 @@
devShell =
pkgs.mkShell { buildInputs = with pkgs; [ clojure update-deps ]; };
});
}) // {
overlay = final: prev: {
inherit (self.packages."${prev.system}") wallfly;
};
nixosModule = import ./module.nix;
};
}