diff --git a/nixops/desktop.nix b/nixops/desktop.nix index 87bac5c..30df0d3 100644 --- a/nixops/desktop.nix +++ b/nixops/desktop.nix @@ -6,6 +6,7 @@ let in { deployment.targetHost = host; + nix.nixPath = [ "nixpkgs=${pkgs.path}" ]; imports = [ diff --git a/nixops/light.nix b/nixops/light.nix index 7fa394b..7eae12e 100644 --- a/nixops/light.nix +++ b/nixops/light.nix @@ -3,6 +3,7 @@ { config, pkgs, ... }: { deployment.targetHost = host; + nix.nixPath = [ "nixpkgs=${pkgs.path}" ]; imports = [ diff --git a/nixops/rpi.nix b/nixops/rpi.nix index a562f8e..4194f62 100644 --- a/nixops/rpi.nix +++ b/nixops/rpi.nix @@ -6,6 +6,7 @@ let in { deployment.targetHost = host; + nix.nixPath = [ "nixpkgs=${pkgs.path}" ]; nixpkgs.system = "aarch64-linux"; boot.loader.grub.enable = false;