diff --git a/configs/nix.nix b/configs/nix.nix index a8cad1f..9b7f76f 100644 --- a/configs/nix.nix +++ b/configs/nix.nix @@ -1,9 +1,14 @@ -{pkgs, ...}: { +{ + pkgs, + inputs, + ... +}: { nixpkgs = { config.allowUnfree = true; }; nix = { package = pkgs.nixFlakes; extraOptions = "experimental-features = nix-command flakes"; + nixPath = ["nixpkgs=${inputs.nixpkgs}"]; }; }