fix: move legacy nix path definitions back to devos

This commit is contained in:
David Arnold 2021-07-16 15:27:17 -05:00
parent b05f95065e
commit 8ae22c63dc
No known key found for this signature in database
GPG Key ID: AB15A6AF1101390D
1 changed files with 7 additions and 0 deletions

7
modules/nix-path.nix Normal file
View File

@ -0,0 +1,7 @@
{ channel, inputs, ... }: {
nix.nixPath = [
"nixpkgs=${channel.input}"
"nixos-config=${../lib/compat/nixos}"
"home-manager=${inputs.home}"
];
}