From 8ae22c63dc9eb0956ec26ca90dd7bef495be4404 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Fri, 16 Jul 2021 15:27:17 -0500 Subject: [PATCH] fix: move legacy nix path definitions back to devos --- modules/nix-path.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/nix-path.nix diff --git a/modules/nix-path.nix b/modules/nix-path.nix new file mode 100644 index 00000000..273f67a6 --- /dev/null +++ b/modules/nix-path.nix @@ -0,0 +1,7 @@ +{ channel, inputs, ... }: { + nix.nixPath = [ + "nixpkgs=${channel.input}" + "nixos-config=${../lib/compat/nixos}" + "home-manager=${inputs.home}" + ]; +}