Possible fix for source not found issue

This commit is contained in:
baduhai 2022-11-29 19:46:04 -03:00
parent 34c8e866f4
commit 2b83831179
4 changed files with 39 additions and 25 deletions

View file

@ -0,0 +1,12 @@
{ inputs, config, pkgs, lib, ... }:
{
nix = {
registry.nixpkgs.flake = inputs.nixpkgs;
nixPath = [
"nixpkgs=/etc/channels/nixpkgs"
"nixos-config=/etc/nixos/configuration.nix"
"/nix/var/nix/profiles/per-user/root/channels"
];
};
}