Consumers get this evaluation warning on every build against nixpkgs 26.05+:
evaluation warning: 'system' has been renamed to/replaced by 'stdenv.hostPlatform.system'
Location: flake.nix line 187:
default = self.packages.${pkgs.system}.default;
Fix (one-liner):
- default = self.packages.${pkgs.system}.default;
+ default = self.packages.${pkgs.stdenv.hostPlatform.system}.default;
(Line 188's defaultText is just literal docs text - fine to leave, or update for consistency.)
(found while auditing the home-manager config that consumes this flake)
Consumers get this evaluation warning on every build against nixpkgs 26.05+:
Location:
flake.nixline 187:Fix (one-liner):
(Line 188's
defaultTextis just literal docs text - fine to leave, or update for consistency.)(found while auditing the home-manager config that consumes this flake)