mirror of
https://github.com/larstvei/nix-config.git
synced 2025-08-30 12:50:12 +00:00
Set some default fonts
This commit is contained in:
parent
76a4062806
commit
0c95b2fae5
@ -1,6 +1,17 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
fonts.packages = import ../../home/fonts { inherit pkgs; };
|
||||
|
||||
fonts = {
|
||||
packages = import ../../home/fonts { inherit pkgs; };
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
defaultFonts = {
|
||||
serif = [ "Source Serif 4" ];
|
||||
sansSerif = [ "Source Sans 3" ];
|
||||
monospace = [ "Source Code Pro" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.fish.enable = true;
|
||||
environment.shells = [ pkgs.fish ];
|
||||
|
Loading…
Reference in New Issue
Block a user