diff --git a/modules/xconfig.nix b/modules/xconfig.nix index 71ab4a6..917f1bf 100644 --- a/modules/xconfig.nix +++ b/modules/xconfig.nix @@ -8,15 +8,18 @@ in { bqn.enable = mkEnableOption "Enables bqn layout"; - touchpad.enableProperConfig = mkEnableOption "Enable the only correct touchpad settings"; + touchpad = { + enableProperConfig = mkEnableOption "Enable the only correct touchpad settings"; + + accelProfile = mkOption { + type = types.enum [ "flat" "adaptive" ]; + default = "adaptive"; + example = "flat"; + description = '' + Usually want this on adaptive. + ''; + }; - touchpad.accelProfile = mkOption { - type = types.enum [ "flat" "adaptive" ]; - default = "adaptive"; - example = "flat"; - description = '' - Usually want this on adaptive. - ''; }; mouse.accelProfile = mkOption {