Fix rust template
All checks were successful
/ check (push) Successful in 5m19s

This commit is contained in:
Daniel Flanagan 2025-01-02 21:16:51 -06:00
parent 92d9dd8249
commit 134c4a8fd8
2 changed files with 5 additions and 5 deletions

View file

@ -3,12 +3,12 @@
inputs.git-hooks.url = "github:cachix/git-hooks.nix";
inputs.git-hooks.inputs.nixpkgs.follows = "nixpkgs";
outputs = inputs: let
inherit (import nix/boilerplate.nix inputs) fullImport genPkgs;
inherit (import nix/boilerplate.nix inputs) call genPkgs;
in {
# overlays = import nix/overlays.nix;
checks = fullImport nix/checks.nix;
packages = fullImport nix/packages.nix;
devShells = fullImport nix/shells.nix;
checks = call (import nix/checks.nix);
packages = call (import nix/packages.nix);
devShells = call (import nix/shells.nix);
formatter = genPkgs (p: p.alejandra);
};
}

View file

@ -4,7 +4,7 @@ inputs @ {
...
}: let
forSelfOverlay =
if builtins.hasAttr "forSelf" self.overlays
if builtins.hasAttr "overlays" self && builtins.hasAttr "forSelf" self.overlays
then self.overlays.forSelf
else (_: p: p);
in rec {