finishing automated setup

This commit is contained in:
2025-06-02 00:07:53 +01:00
parent 01e19d9a8c
commit 27f4615cd1
2 changed files with 5 additions and 3 deletions

View File

@@ -28,7 +28,7 @@
devShells.default = pkgs.haskellPackages.shellFor {
packages = p: [
(p.callPackage ./cabal.nix { })
(p.callPackage ./shell.nix { })
];
buildInputs = with pkgs; [
@@ -41,6 +41,7 @@
# TODO: add cabal2nix shell command
shellHook = ''
cabal2nix . > ./cabal.nix
cabal2nix . --shell > ./shell.nix
'';
};
}