flake: add devshell

This commit is contained in:
Jeremy Baxter 2024-06-12 15:23:23 +12:00
parent 392a041d2e
commit e9c473e671

View file

@ -16,6 +16,17 @@
);
in
{
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
stdenv
clang-tools
];
shellHook = ''
export PS1="(callisto) $ "
'';
};
});
packages = forAllSystems (pkgs: {
default = pkgs.stdenv.mkDerivation {
name = "callisto";