Common/nix: remove unneeded nixpath workaround, update comment

This commit is contained in:
Toast 2024-12-15 16:25:48 +01:00
parent 99056c9f32
commit d130ffb20d

View file

@ -58,9 +58,10 @@
}; };
# Write the system's nixpkgs into the registry to avoid mixing nixpkgs versions # Write the system's nixpkgs into the registry to avoid mixing nixpkgs versions
# https://dataswamp.org/~solene/2022-07-20-nixos-flakes-command-sync-with-system.html # https://dataswamp.org/~solene/2022-07-20-nixos-flakes-command-sync-with-system.html
# Since 24.05 this is already done for nixpkgs, but it doesn't keep the patches
# so I'm keeping this around just in case
system.flake = systemPkgs; system.flake = systemPkgs;
}; };
# I removed this in the past since I thought that I didn't need it, but turns out comma does :)
nixPath = ["nixpkgs=${systemPkgs}"];
}; };
} }