all repos — nixfiles @ 68137a55a55f6fb7aecbbf1c2c4692771e5024b0

System and user configuration, managed by nix and home-manager

fix missing submodules in NIX_PATH

Alan Pearce
commit

68137a55a55f6fb7aecbbf1c2c4692771e5024b0

parent

e79b6b6df8739f2a8caf399f90732cc8f5edda0b

1 file changed, 7 insertions(+), 6 deletions(-)

changed files
M sources.nixsources.nix
@@ -22,16 +22,17 @@ if pkgs.stdenv.isDarwin
then "darwin-config" else "nixos-config"; -in -{ - nixPath = lib.attrsets.mapAttrsToList - (k: v: kvPath k (mkPathable v)) - npins; - sources = { personal = ./packages; nixpkgs-overlays = ./overlays; private = ./private; ${config} = ./system/configuration.nix; } // (fromNpins npins); +in +{ + inherit sources; + + nixPath = lib.attrsets.mapAttrsToList + (k: v: kvPath k (mkPathable v)) + sources; }