all repos — nixfiles @ 15062a1bf490549f2c2a70938f6ff3a1bcbe2650

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

lib/default.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs }:
with builtins;
let
  inherit (pkgs) lib;
in
rec {
  importPathStore = p: "${append ../. "/${p}"}";

  mkPathable = s: toString (
    if s.type == "local"
    then (lib.path.append ../. s.outPath)
    else s.outPath
  );

  mkNixPath = sources: lib.attrsets.mapAttrsToList
    (k: v: "${k}=${mkPathable v}")
    (removeAttrs sources [ "__functor" ]);
}