diff --git a/nixos/module/hectic/archetype/base.nix b/nixos/module/hectic/archetype/base.nix index 9faf312..c77bd08 100644 --- a/nixos/module/hectic/archetype/base.nix +++ b/nixos/module/hectic/archetype/base.nix @@ -28,11 +28,11 @@ in { environment = { defaultPackages = []; - systemPackages = (with self.packages.${pkgs.system}; [ + systemPackages = (with self.packages.${pkgs.stdenv.hostPlatform.system}; [ nvim-pager ]); variables = { - PAGER = with self.packages.${pkgs.system}; "${nvim-pager}/bin/pager"; + PAGER = with self.packages.${pkgs.stdenv.hostPlatform.system}; "${nvim-pager}/bin/pager"; }; };