diff options
| author | Seth Flynn <[email protected]> | 2025-02-25 22:49:12 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-25 22:49:12 -0500 |
| commit | 94f4f0032afcccdb6a4bf2f3ea4ec1a7958880ee (patch) | |
| tree | 746465a45df72e1688f3bdc3c4826a98528adc2a | |
| parent | 11865589c04d060473819d7c9d630403320c6960 (diff) | |
modules/nix: fix eval with nixpkgs-stable
| -rw-r--r-- | modules/shared/defaults/nix.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared/defaults/nix.nix b/modules/shared/defaults/nix.nix index 9c59f10..d0c5049 100644 --- a/modules/shared/defaults/nix.nix +++ b/modules/shared/defaults/nix.nix @@ -49,7 +49,7 @@ in registry = lib.mapAttrs (lib.const (flake: { to = lib.mkDefault { type = "path"; - path = flake.outPath; + path = lib.mkForce flake.outPath; }; })) inputs; |
