13 lines
263 B
Nix
13 lines
263 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
environment.etc."channels/nixpkgs".source = inputs.nixpkgs.outPath;
|
|
|
|
nix = {
|
|
registry.nixpkgs.flake = inputs.nixpkgs;
|
|
nixPath = [
|
|
"nixpkgs=${inputs.nixpkgs}"
|
|
"/nix/var/nix/profiles/per-user/root/channels"
|
|
];
|
|
};
|
|
}
|