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

@ -7,14 +7,14 @@ in
perSystem =
{ pkgs, ... }:
{
packages.${name} = inputs.${name}.packages.${pkgs.system}.default;
packages.${name} = inputs.${name}.packages.${pkgs.stdenv.hostPlatform.system}.default;
};
flake.modules.homeManager.base =
{ config, pkgs, ... }:
{
home.packages = [
(withSystem pkgs.system (psArgs: psArgs.config.packages.${name}))
(withSystem pkgs.stdenv.hostPlatform.system (psArgs: psArgs.config.packages.${name}))
];
home.sessionVariables = {