feat: system themes

This commit is contained in:
Barrett Ruth 2026-02-13 15:44:55 -05:00
parent 02f1603e89
commit e18ad83624
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
3 changed files with 22 additions and 1 deletions

View file

@ -77,6 +77,14 @@ in
x11.enable = false;
};
gtk = {
enable = true;
font = {
name = "SF Pro Display";
size = 11;
};
};
home.file.".local/share/fonts".source =
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.config/nix/fonts";

View file

@ -24,7 +24,14 @@ in
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
};
dconf.enable = true;
dconf = {
enable = true;
settings."org/gnome/desktop/interface" = {
font-name = "SF Pro Display 11";
document-font-name = "SF Pro Display 11";
monospace-font-name = "Berkeley Mono 11";
};
};
home.packages = with pkgs; [
rofi

View file

@ -134,6 +134,12 @@
security.sudo.enable = true;
fonts.fontconfig.defaultFonts = {
sansSerif = [ "SF Pro Display" ];
monospace = [ "Berkeley Mono" ];
serif = [ "Times New Roman" ];
};
environment.systemPackages = with pkgs; [
vim
wget