fixed flake

This commit is contained in:
Sebastian Wendel 2022-07-12 17:00:03 +02:00
parent 386eba1547
commit f0919192be
No known key found for this signature in database
GPG key ID: 1422B7DF78144640

View file

@ -15,5 +15,8 @@
outputs = { self, nixpkgs, utils, ... }@inputs:
utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in { devShell = import ./shell.nix { inherit pkgs; }; });
in {
devShells.default = import ./shell.nix {
inherit pkgs; };
});
}