From cf7d20360e6858a046706ab2475f73e0b64e0669 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 2 Jun 2024 14:23:37 -0400 Subject: [PATCH] example: Prefer pkgs.system where possible --- example/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/configuration.nix b/example/configuration.nix index f1f69553..4d0167dc 100644 --- a/example/configuration.nix +++ b/example/configuration.nix @@ -18,7 +18,7 @@ in }; environment.systemPackages = attrValues { - inherit (nix-config.packages.x86_64-linux) fluent-icons osu-backgrounds; + inherit (nix-config.packages.${pkgs.system}) fluent-icons osu-backgrounds; inherit (pkgs) ruby php; };