dotfiles/modules/nix-path.nix

12 lines
166 B
Nix
Raw Normal View History

2023-02-07 21:41:32 +01:00
{
channel,
inputs,
...
}: {
nix.nixPath = [
"nixpkgs=${channel.input}"
"nixos-config=${../lib/compat/nixos}"
"home-manager=${inputs.home}"
];
}