summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/hardware/keyboard.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/hardware/keyboard.nix b/nixos/modules/hardware/keyboard.nix
index 69ab14a..dc68b2f 100644
--- a/nixos/modules/hardware/keyboard.nix
+++ b/nixos/modules/hardware/keyboard.nix
@@ -2,15 +2,15 @@
with lib;
let
- cfg = config.eth.keyboard;
+ cfg = config.eth.hardware.keyboard;
in {
- options.eth.keyboard = {
- enable = mkEnableOption "Eth's keyboard preferences";
+ options.eth.hardware.keyboard = {
+ enableColemak = mkEnableOption "Eth's keyboard preferences";
};
- config = mkIf cfg.enable {
+ config = mkIf cfg.enableColemak {
console.useXkbConfig = true;