add fonts to programs

This commit is contained in:
WieErWill 2025-05-23 23:19:21 +02:00
parent 94f26e3fe5
commit 11096d534a
2 changed files with 28 additions and 13 deletions

View File

@ -5,18 +5,26 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
# List of programs # List of programs
thunderbird thunderbird
signal-desktop #signal-desktop
vscodium vscodium # ide
vlc vlc # video player
keepassxc keepassxc # password manager
alacritty alacritty # terminal emulator
logseq #logseq # note taking organization
okular okular # pdf viewer
firefox firefox # browser
borgbackup borgbackup # system/data bakups
filezilla # ftp client
#inetutils # ftp cli
discord
# utility # utility
ranger
vimiv-qt
zip
unzip
htop htop
btop
pulsemixer pulsemixer
brightnessctl brightnessctl
gammastep # color temperature gammastep # color temperature
@ -27,6 +35,10 @@
wl-clipboard # wl-copy and wl-paste for copy/paste from stdin / stdout wl-clipboard # wl-copy and wl-paste for copy/paste from stdin / stdout
mako # notification system developed by swaywm maintainer mako # notification system developed by swaywm maintainer
# secret management
age
sops
# steam deck touch compability in non-steam games # steam deck touch compability in non-steam games
#caribou #caribou
#evtest # for input key testing #evtest # for input key testing
@ -35,7 +47,10 @@
# # overrides. You can do that directly here, just don't forget the # # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of # # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts? # # fonts?
(pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) #(pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
nerd-fonts.fantasque-sans-mono
nerd-fonts.droid-sans-mono
nerd-fonts.jetbrains-mono
nerd-fonts.hack
]; ];
} }