nix: change from pkgs.system to stdenv.hostPlatform.system

This commit is contained in:
Christoph Hollizeck 2025-11-07 14:40:05 +01:00
parent e5143c2000
commit c57ec4fc2f
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
14 changed files with 241 additions and 129 deletions

View file

@ -1,6 +1,6 @@
{
flake.modules.nixos.games =
{ pkgs, ... }:
{ inputs, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
prismlauncher
@ -8,7 +8,7 @@
# gaming tools
pyfa
path-of-building
inputs.nixpkgs-master.legacyPackages.${pkgs.stdenv.hostPlatform.system}.rusty-path-of-building
];
};
}