zmk/flake.nix
Brian Romanko 23c2ef0556 Add nix flake support
Now that nix 2.4 is out, flakes are no longer experimental.
2021-12-10 09:21:39 -08:00

11 lines
399 B
Nix

{
description = "# Zephyr Mechanical Keyboard (ZMK) Firmware";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in { devShell = import ./shell.nix { inherit pkgs; }; });
}