adding initHaskellProject to bootstrap project

This commit is contained in:
2025-05-30 23:56:03 +01:00
parent f39fab04ce
commit 3669fdfad2
2 changed files with 6 additions and 6 deletions

View File

@@ -45,8 +45,8 @@
inherit system;
overlays = [
gomod2nix.overlays.default
bindingsOverlay
coreOverlay
bindingsOverlay
];
};
@@ -91,8 +91,7 @@
)) //
{
overlays = {
default = [coreOverlay bindingsOverlay];
core = coreOverlay;
default = coreOverlay;
bindings = bindingsOverlay;
};
templates.haskell = {

View File

@@ -22,9 +22,10 @@
let
pkgs = import nixpkgs {
inherit system;
# TODO: p2prc overlays into a single list
overlays = p2prc-flake.overlays.default;
overlays = [
p2prc-flake.overlays.default
p2prc-flake.overlays.bindings
];
};
in {