nix/modules/nix-path.nix
Mr Hedgehog e963a1fa4d
init
2022-01-28 09:25:01 -05:00

7 lines
160 B
Nix

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