fix: some warnings

This commit is contained in:
2026-02-23 18:27:36 +00:00
parent 0d7b84e3bc
commit 3414edf2a8

View File

@@ -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";
};
};