diff options
| author | beeb5k <beebeeb5k@gmail.com> | 2026-06-20 02:51:59 +0530 |
|---|---|---|
| committer | beeb5k <beebeeb5k@gmail.com> | 2026-06-20 02:51:59 +0530 |
| commit | 47bc39d25a359c94e9a139be9d453a05694ef341 (patch) | |
| tree | cd5ad0f5e413056e74feb6a7790b7b510ea5d1c8 /common/programs | |
| parent | f1d30adc192df38fe8f6cd50cb2eae048789459b (diff) | |
Font and cursor
Diffstat (limited to 'common/programs')
| -rw-r--r-- | common/programs/bash.nix | 2 | ||||
| -rw-r--r-- | common/programs/brave.nix | 2 | ||||
| -rw-r--r-- | common/programs/dunst.nix | 2 | ||||
| -rw-r--r-- | common/programs/fish.nix | 13 | ||||
| -rw-r--r-- | common/programs/librewolf.nix | 6 | ||||
| -rw-r--r-- | common/programs/rofi.nix | 6 |
6 files changed, 14 insertions, 17 deletions
diff --git a/common/programs/bash.nix b/common/programs/bash.nix index 1ad9e80..f6987ed 100644 --- a/common/programs/bash.nix +++ b/common/programs/bash.nix @@ -1,6 +1,6 @@ { programs.bash = { - enable = true; + enable = false; historySize = 10000; historyFile = "$HOME/.bash_history"; historyControl = [ diff --git a/common/programs/brave.nix b/common/programs/brave.nix index cba3bca..d7240e7 100644 --- a/common/programs/brave.nix +++ b/common/programs/brave.nix @@ -1,7 +1,7 @@ { inputs, pkgs, ... }: { programs.brave = { - enable = false; + enable = true; package = inputs.brave-origin.packages.${pkgs.stdenv.hostPlatform.system}.default; extensions = [ diff --git a/common/programs/dunst.nix b/common/programs/dunst.nix index 78aadf5..b96d274 100644 --- a/common/programs/dunst.nix +++ b/common/programs/dunst.nix @@ -15,7 +15,7 @@ in enable = true; settings = { global = { - font = "IosevkaInput 11"; + font = "monospace 11"; corner_radius = 0; frame_width = 2; markup = "yes"; diff --git a/common/programs/fish.nix b/common/programs/fish.nix index 9d979a2..8d9be78 100644 --- a/common/programs/fish.nix +++ b/common/programs/fish.nix @@ -3,23 +3,20 @@ ... }: { - programs.fish.enable = false; - - home.packages = with pkgs; [ - fzf - ]; + # home.packages = with pkgs; [ + # fzf + # ]; programs.fish = { + enable = true; interactiveShellInit = #fish '' function fish_mode_prompt end set -g fish_greeting "" + set -U fish_autosuggestion_enabled 0 fish_vi_key_bindings - set -U fish_color_user blue - set -U fish_color_host normal - set -U fish_color_cwd blue ''; }; } diff --git a/common/programs/librewolf.nix b/common/programs/librewolf.nix index d5bdea4..9238632 100644 --- a/common/programs/librewolf.nix +++ b/common/programs/librewolf.nix @@ -7,7 +7,7 @@ }: { programs.librewolf = { - enable = true; + enable = false; policies = { ExtensionSettings = { # "uBlock0@raymondhill.net" = { @@ -66,7 +66,7 @@ userChrome = '' @import "firefox-gnome-theme/userChrome.css"; * { - font-family: "IosevkaInput" !important; + font-family: "monospace" !important; border-radius: 0px !important; } @@ -74,7 +74,7 @@ userContent = '' @import "firefox-gnome-theme/userContent.css"; * { - font-family: "IosevkaInput" !important; + font-family: "monospace" !important; border-radius: 0px !important; } ''; diff --git a/common/programs/rofi.nix b/common/programs/rofi.nix index 20fdffe..73e31f9 100644 --- a/common/programs/rofi.nix +++ b/common/programs/rofi.nix @@ -8,7 +8,7 @@ config = lib.mkIf config.beeMods.windowManagers.beeConfig.enable { programs.rofi = { enable = true; - font = "IosevkaInput"; + font = "monospace"; # plugins = with pkgs; [ rofi-emoji ]; theme = "~/.config/rofi/themes/config.rasi"; extraConfig = { @@ -84,7 +84,7 @@ placeholder-color: @fg-dim; placeholder: "Search..."; cursor: text; - font: "IosevkaInput 13"; + font: "monospace 13"; } listview { @@ -136,7 +136,7 @@ background-color: transparent; text-color: inherit; vertical-align: 0.5; - font: "IosevkaInput 13"; + font: "monospace 13"; } ''; }; |
