From 69bc95fc46b1a124fbb2fac3a9caaa674813eb77 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 21 Jun 2024 20:36:57 -0400 Subject: [PATCH] rustboro: simplified home config --- hosts/rustboro/home.nix | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/hosts/rustboro/home.nix b/hosts/rustboro/home.nix index 0fb348b0..4a76fba5 100644 --- a/hosts/rustboro/home.nix +++ b/hosts/rustboro/home.nix @@ -17,21 +17,9 @@ preset = "LoudnessEqualizer"; }; theme = { - cursorTheme = lib.mkForce { - name = "Catppuccin-Latte-Dark-Cursors"; - size = 32; - package = pkgs.catppuccin-cursors.latteDark; - }; - font = lib.mkForce { - name = "NotoSans Nerd Font"; - size = 14; - package = pkgs.nerdfonts.override {fonts = ["Noto"];}; - }; - terminalFont = lib.mkForce { - name = "NotoSansM Nerd Font"; - size = 14; - package = pkgs.nerdfonts.override {fonts = ["Noto"];}; - }; + cursorTheme.size = lib.mkForce 32; + font.size = lib.mkForce 14; + terminalFont.size = lib.mkForce 14; }; }; }