Files
control-plane-protocol/flake.nix
T
2026-06-17 22:47:56 -07:00

21 lines
484 B
Nix

{
description = "Shared Quixos control-plane protocol types";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShells.default = pkgs.mkShell {
packages = [
pkgs.nodejs_24
];
};
});
}