flake.nix: add pinned devshell

This commit is contained in:
Tristan Ross 2024-08-09 19:25:59 -07:00
parent 67d042b306
commit 112cef0f1d
No known key found for this signature in database
GPG Key ID: B09C422035669AF8

View File

@ -77,6 +77,10 @@
}).nixos.manual; }).nixos.manual;
}; };
devShells = forAllSystems (system: {
default = import ./shell.nix { inherit system; };
});
# The "legacy" in `legacyPackages` doesn't imply that the packages exposed # The "legacy" in `legacyPackages` doesn't imply that the packages exposed
# through this attribute are "legacy" packages. Instead, `legacyPackages` # through this attribute are "legacy" packages. Instead, `legacyPackages`
# is used here as a substitute attribute name for `packages`. The problem # is used here as a substitute attribute name for `packages`. The problem