Add nix development shell

This commit is contained in:
Yannik Sander 2021-09-24 10:57:56 +03:00
parent b0bdc4f65c
commit ff0935a9be

View File

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