Add nix development shell

This commit is contained in:
Yannik Sander 2021-09-24 10:57:56 +03:00 committed by PaddiM8
parent 8bf5466e6c
commit 8dff304422

View File

@ -55,5 +55,10 @@
});
defaultApp = forAllSystems (system: self.apps.${system}.kalker);
devShell = forAllSystems (system:
nixpkgs.legacyPackages.${system}.mkShell {
inputsFrom = builtins.attrValues (packages);
});
};
}