diff --git a/nix/hm-module.nix b/nix/hm-module.nix index 55107bc..3f60db9 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -67,7 +67,7 @@ in { }; x = mkNumericOption { - default.relative = 0.5; + default.fraction = 0.5; description = mdDoc '' The horizontal position, adjusted so that { relative = 0.5; } always centers the runner. @@ -76,7 +76,7 @@ in { }; y = mkNumericOption { - default.absolute = 0; + default.fraction = 0; description = mdDoc '' The vertical position, works the same as x. @@ -102,15 +102,6 @@ in { ''; }; - verticalOffset = mkNumericOption { - default.absolute = 0; - description = '' - How much the runner is shifted vertically. - - ${numericInfo} - ''; - }; - hideIcons = mkOption { type = types.bool; default = false;