feat: flake update workflow #1

Merged
Koen merged 21 commits from workflows into main 2026-02-10 18:25:00 +01:00
Showing only changes of commit 069ec1166f - Show all commits

View file

@ -80,6 +80,7 @@ in {
in { in {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
forgejo-runner forgejo-runner
nodejs_24 # Needed for actions/checkout@v4 action
]; ];
users.groups.runner = {}; users.groups.runner = {};
@ -97,7 +98,7 @@ in {
''; '';
serviceConfig = { serviceConfig = {
User = "runner"; User = "runner";
Environment = "PATH=/bin"; Environment = "PATH=$PATH:/run/current-system/sw/bin";
}; };
wantedBy = ["multi-user.target"]; wantedBy = ["multi-user.target"];
}; };