feat: system themes
This commit is contained in:
parent
02f1603e89
commit
e18ad83624
3 changed files with 22 additions and 1 deletions
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue