From 18b635bb747900fe6fe1278ec0afaa406b67cff5 Mon Sep 17 00:00:00 2001 From: Armin Veres <45210978+arminveres@users.noreply.github.com> Date: Sun, 8 Jun 2025 18:43:41 +0200 Subject: [PATCH] docs: Update README.md Add missing system variable from package. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b43d58..5bffcfa 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,10 @@ Flake users are assumed to have a `flake.nix` file and a `configuration.nix`. modules = [ { environment.systemPackages = [ - inputs.dzgui-nix.packages.default + # add your system architecture as variable + inputs.dzgui-nix.packages.${}.default + # or specify manually. + inputs.dzgui-nix.packages.x86_64-linux.default ]; } # other modules...