aboutsummaryrefslogtreecommitdiff
path: root/keyboards/default.nix
blob: ea5ceece9ce507e189400dbf86400e3b6abfc0e2 (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.firmware = mkOption {
    type = types.submodule [
      # ./f62
      # ./f77
      ./nk65b
      # ./nk87
      # ./nk_classic_tkl
      # ./steezy60
      # ./xd60
      # ./xd84pro
      # ./xd87
    ];
  };
}