nextcloud-version-matrix/flake.nix
David Dreschner 250fb2155f
feat: Use node24 instead of node20
Signed-off-by: David Dreschner <github-2017@dreschner.net>
2026-06-20 23:01:17 +02:00

24 lines
426 B
Nix

{
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "nixpkgs/release-25.11";
};
outputs = {
self,
nixpkgs,
utils
}:
utils.lib.eachDefaultSystem (system: let
pkgs = (import nixpkgs) {
inherit system;
};
in {
# `nix develop`
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs_24
];
};
});
}