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