refactor: replaced with pkgs with builtins.attrValues

This commit is contained in:
Nick 2024-11-09 00:35:10 -06:00
parent 3c08f7f35f
commit 85bb65fea7
2 changed files with 12 additions and 2 deletions

View file

@ -4,7 +4,12 @@
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
extraPackages = [pkgs.curl];
extraPackages = builtins.attrValues {
inherit
(pkgs)
curl
;
};
};
java.enable = true;
};