aboutsummaryrefslogtreecommitdiff
path: root/keyboards/default.nix
blob: d3f39a5bb0d4d18932aef40fd03cd152db1cd2e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, ... }:
let
  inherit (lib) mkOption types;
in {
  perSystem = {...}: {
    imports = [
      # ./f62
      # ./f77
      ./nk65b
      # ./nk87
      # ./nk_classic_tkl
      # ./steezy60
      # ./xd60
      # ./xd84pro
      # ./xd87
    ];
  };
}