Skip to content

Commit

Permalink
fix: use sans & nerdfont
Browse files Browse the repository at this point in the history
  • Loading branch information
M0NsTeRRR committed Sep 26, 2024
1 parent 2c8e5e3 commit 447b80e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion home/config/hypr/hyprlock.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source = ~/.config/hypr/macchiato.conf

$accent = $mauve
$accentAlpha = $mauveAlpha
$font = JetBrainsMono Nerd Font
$font = Sans

# GENERAL
general {
Expand Down
2 changes: 1 addition & 1 deletion home/config/swaync/macchiato.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
* {
all: unset;
font-size: 14px;
font-family: "JetBrainsMono Nerd Font";
font-family: "Sans";
transition: 200ms;
}

Expand Down
2 changes: 1 addition & 1 deletion home/config/waybar/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* {
font-family: "JetBrainsMono Nerd Font";
font-family: "Sans";
font-size: 12pt;
font-weight: bold;
border-radius: 0px;
Expand Down
1 change: 0 additions & 1 deletion home/user/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
wl-clip-persist # Keep Wayland clipboard even after programs close
swayosd # OSD window for common actions like volume and capslock
waybar # Wayland bar
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) # nerdfonts font
rofi-wayland # Keystroke Launcher
wlogout # logout menu
polkit-kde-agent # authentication agent
Expand Down
3 changes: 2 additions & 1 deletion home/user/programs/kitty.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ pkgs, ...}:
{
programs.kitty = {
enable = true;
font = "JetBrainsMono Nerd Font";
font = (nerdfonts.override { fonts = [ "JetBrainsMono" ]; });
};
}

0 comments on commit 447b80e

Please sign in to comment.