summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorEmily <vcs@emily.moe>2024-09-17 21:24:24 +0100
committerEmily <vcs@emily.moe>2024-09-17 21:24:39 +0100
commitdb92fac3a9552ac3338977dcaf4cd15acf4aac08 (patch)
tree3164bcb03a8ae49fc470efb9354faaaa77f1b1e0 /flake.nix
parent21fe31f26473c180390cfa81e3ea81aca0204c80 (diff)
flake: match NixOS definition of `nixpkgs.flake.source`
Closes: #1082
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 0f79d77..59db4ff 100644
--- a/flake.nix
+++ b/flake.nix
@@ -27,7 +27,7 @@
}
++ [ ({ lib, ... }: {
nixpkgs.source = lib.mkDefault nixpkgs;
- nixpkgs.flake.source = lib.mkDefault nixpkgs;
+ nixpkgs.flake.source = lib.mkDefault nixpkgs.outPath;
system.checks.verifyNixPath = lib.mkDefault false;