os/modules/nix-path.nix
2022-11-20 23:28:23 +01:00

12 lines
166 B
Nix

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