nix-config

My personal nixos and home-manager configuration
Log | Files | Refs | README

commit 68f6e967ed279bfd7d323f1ee6f8d7ec27fdc7bd
parent 64d659fdad28a39cd4677a25397a98447ba825ec
Author: benjamin paul <bpaul@bpaul.xyz>
Date:   Fri,  2 Jul 2021 22:20:01 +1000

Lol rofi stuff was broken so commented some stuff out

Diffstat:
Mhome/modules/graphical/rofi.nix | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/home/modules/graphical/rofi.nix b/home/modules/graphical/rofi.nix @@ -65,21 +65,21 @@ with lib; }; width = mkOption { - types = types.nullOr types.int; + type = types.nullOr types.int; default = null; example = 100; description = "Width of the window"; }; xoffset = mkOption { - types = types.int; + type = types.int; default = 0; example = 50; description = "Translate the window by this many pixels along the x axis"; }; yoffset = mkOption { - types = types.int; + type = types.int; default = 0; example = 50; description = "Translate the window by this many pixels along the y axis"; @@ -116,13 +116,13 @@ with lib; borderWidth = config.rofi.borderWidth; font = config.rofi.font; - padding = config.rofi.padding; - scrollbar = config.rofi.scrollbar; - separator = config.rofi.separator; - location = config.rofi.location; - width = config.rofi.width; - xoffset = config.rofi.xoffset; - yoffset = config.rofi.yoffset; + #padding = config.rofi.padding; + #scrollbar = config.rofi.scrollbar; + #separator = config.rofi.separator; + #location = config.rofi.location; + #width = config.rofi.width; + #xoffset = config.rofi.xoffset; + #yoffset = config.rofi.yoffset; lines = config.rofi.lines; rowHeight = config.rofi.rowHeight;