diff options
Diffstat (limited to 'modules/home-manager/personal/programs')
| -rw-r--r-- | modules/home-manager/personal/programs/alacritty.nix | 2 | ||||
| -rw-r--r-- | modules/home-manager/personal/programs/rofi.nix | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/modules/home-manager/personal/programs/alacritty.nix b/modules/home-manager/personal/programs/alacritty.nix index afecfc9..94193e8 100644 --- a/modules/home-manager/personal/programs/alacritty.nix +++ b/modules/home-manager/personal/programs/alacritty.nix @@ -13,7 +13,7 @@ }; }; - font = { size = 8.0; }; + font = lib.mkForce { size = 8.0; }; }; xsession.windowManager.i3.config.terminal = lib.mkIf config.programs.alacritty.enable "alacritty"; diff --git a/modules/home-manager/personal/programs/rofi.nix b/modules/home-manager/personal/programs/rofi.nix index 51c2139..414cf62 100644 --- a/modules/home-manager/personal/programs/rofi.nix +++ b/modules/home-manager/personal/programs/rofi.nix @@ -8,9 +8,6 @@ template = builtins.readFile config.personal.home.dotfiles.rofi; extension = ".rasi"; })); - # TODO: remove this when stylix fixes it upstream - font = lib.mkIf (config ? stylix) - (lib.mkForce "${config.stylix.fonts.monospace.name} 12"); plugins = with pkgs; [ rofi-top rofi-calc rofi-emoji ]; }; } |
