fix: Bump nixpkgs and switch nix3 cli

This commit is contained in:
2026-02-17 10:53:01 +01:00
parent 708275d73d
commit 0fdb5e15fc
6 changed files with 155 additions and 48 deletions
+16 -1
View File
@@ -1 +1,16 @@
(import ./default.nix { }).shell
{
sources ? import ./npins,
system ? builtins.currentSystem,
pkgs ? import sources.nixpkgs {
inherit system;
config = { };
overlays = [ ];
},
}:
pkgs.mkShellNoCC {
packages = with pkgs; [
npins
actionlint
action-validator
];
}