From 3414edf2a8ccc72ffc0604978ada8bcba6821f66 Mon Sep 17 00:00:00 2001 From: yukkop Date: Mon, 23 Feb 2026 18:27:36 +0000 Subject: [PATCH] fix: some warnings --- nixos/module/hectic/archetype/base.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; }; };