Skip to content

Commit dc5643c

Browse files
committed
feat(templates): use nixbuild/nix-quick-install-action in vanilla template
Replace DeterminateSystems installer with nixbuild/nix-quick-install-action to align with main flake actions configuration.
1 parent 9d598c9 commit dc5643c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

home/ai/workflows.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020

2121
## Memory System (Issue Tracker)
2222
inherit (pkgs) beads;
23+
bead = pkgs.writeShellScriptBin "bd" ''
24+
exec ${pkgs.pnpm}/bin/pnpm dlx @beads/bd "$@"
25+
'';
26+
2327
inherit (pkgs.custom) bv-bin;
2428
};
2529
}

templates/vanilla/flake/actions/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535
persist-credentials = false;
3636
};
3737
}
38-
inputs.actions-nix.lib.steps.DeterminateSystemsNixInstallerAction
38+
{
39+
name = "Install Nix";
40+
uses = "nixbuild/nix-quick-install-action@master";
41+
}
3942
{
4043
name = "Magic Nix Cache(Use GitHub Actions Cache)";
4144
uses = "DeterminateSystems/magic-nix-cache-action@main";

0 commit comments

Comments
 (0)