commit d317d0afd8158eba153becd9739bd767f74b9772 parent 5bab4b43c72ade2b3f3708f45e452dda5883a73c Author: MTRNord <mtrnord1@gmail.com> Date: Thu, 10 Aug 2023 18:42:23 +0200 Try loading a package from unstable Diffstat:
| M | nixos/worker-1/configuration.nix | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -130,7 +130,10 @@ }; # packages that are not flakes - environment.systemPackages = with pkgs; [ + unstable_packages = with pkgs.unstable; [ + forgejo-actions-runner + ]; + stable_packages = with pkgs; [ wget curl htop @@ -148,6 +151,8 @@ jq ]; + environment.systemPackages = stable_packages ++ unstable_packages; + # Ensure /etc/shells is setup for zsh programs.zsh.enable = true; environment.shells = with pkgs; [ zsh ];