Fix evaluation warnings

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-11-01 16:07:13 +00:00
parent bbbda37bfc
commit d23ae4bdcf
15 changed files with 31 additions and 31 deletions

View file

@ -12,7 +12,7 @@ in
runtimeInputs = with pkgs; [
fzf
inputs.z.packages.${pkgs.system}.default
inputs.z.packages.${pkgs.stdenv.hostPlatform.system}.default
];
text = ''
@ -27,7 +27,7 @@ in
{ pkgs, ... }:
{
home.packages = [
(withSystem pkgs.system (psArgs: psArgs.config.packages.${name}))
(withSystem pkgs.stdenv.hostPlatform.system (psArgs: psArgs.config.packages.${name}))
];
};
}