add font settings

This commit is contained in:
willifan 2024-05-12 18:36:51 +02:00
parent e97057cd66
commit 5a74c0f0c3
3 changed files with 14 additions and 1 deletions

View file

@ -16,6 +16,7 @@
eww
mako
polkit_gnome
dconf
python3
usbutils

View file

@ -2,6 +2,7 @@
{
imports = [
./font.nix
./gtk.nix
#./qt.nix
];

View file

@ -0,0 +1,11 @@
{ pkgs, home-manager, ...}:
{
home-manager.users.willifan = {
fonts.fontconfig = {
enable = true;
defaultFonts = {
monospace = [ "jetbrains-mono" ];
};
};
};
}