From 8ab865a85390a7746c0d759d63a0f60e3f87ac61 Mon Sep 17 00:00:00 2001 From: Pacman99 Date: Tue, 23 Mar 2021 12:05:30 -0700 Subject: [PATCH] lib/mkProfileAttrs: don't change to path store paths can't be appended to a path --- lib/devos/mkProfileAttrs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/devos/mkProfileAttrs.nix b/lib/devos/mkProfileAttrs.nix index b502629..214df26 100644 --- a/lib/devos/mkProfileAttrs.nix +++ b/lib/devos/mkProfileAttrs.nix @@ -27,7 +27,7 @@ let mkProfileAttrs = f = n: _: lib.optionalAttrs (lib.pathExists "${dir}/${n}/default.nix") - { default = /. + "${dir}/${n}"; } + { default = "${dir}/${n}"; } // mkProfileAttrs "${dir}/${n}"; in lib.mapAttrs f imports;