aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 739f1cfffc89c0d3eae26d5cf98a1a9dd2c8ce77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  description = "Nix utilities to manage keyboard firmware";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs";
    flake-parts.url = "github:hercules-ci/flake-parts";
    systems.url = "github:nix-systems/default";
  };

  outputs = inputs@{self, ... }: inputs.flake-parts.mkFlake { inherit inputs self; } {
    systems = import inputs.systems;
  };
}