modules: hardware: move 'ergodox'

This commit is contained in:
Bruno BELANYI 2021-05-29 16:38:54 +02:00
parent 9b054d10c7
commit b0cc830467
4 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,6 @@
{ {
imports = [ imports = [
./documentation.nix ./documentation.nix
./ergodox.nix
./hardware ./hardware
./home.nix ./home.nix
./language.nix ./language.nix

View file

@ -4,5 +4,6 @@
{ {
imports = [ imports = [
./bluetooth.nix ./bluetooth.nix
./ergodox.nix
]; ];
} }

View file

@ -1,10 +1,10 @@
# ZSA keyboard udev rules # ZSA keyboard udev rules
{ config, lib, ... }: { config, lib, ... }:
let let
cfg = config.my.modules.ergodox; cfg = config.my.hardware.ergodox;
in in
{ {
options.my.modules.ergodox = with lib; { options.my.hardware.ergodox = with lib; {
enable = mkEnableOption "ZSA udev rules and user group configuration"; enable = mkEnableOption "ZSA udev rules and user group configuration";
}; };