diff options
author | sinanmohd <sinan@firemail.cc> | 2023-08-08 07:45:37 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-08-10 05:36:17 +0530 |
commit | 0bed62a620eeb49ccbe03ac4acf6f437e53939ab (patch) | |
tree | 65874635a2848bb4a9f676fe296ee6e3a3d6b495 /features/wayland.nix | |
parent | 5a641e216e7799b024261cc2b77f272fe6473782 (diff) |
clean up: inconsistent list style
Diffstat (limited to 'features/wayland.nix')
-rw-r--r-- | features/wayland.nix | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/features/wayland.nix b/features/wayland.nix index acdde1e..44523cc 100644 --- a/features/wayland.nix +++ b/features/wayland.nix @@ -31,14 +31,23 @@ # font fonts = { - fonts = [ pkgs.terminus-nerdfont pkgs.dm-sans ]; + fonts = with pkgs; [ + terminus-nerdfont + dm-sans + ]; enableDefaultFonts = true; fontconfig = { hinting.style = "hintfull"; defaultFonts = { - monospace = [ "Terminess Nerd Font" ]; - serif = [ "DeepMind Sans" ]; - sansSerif = [ "DeepMind Sans" ]; + monospace = [ + "Terminess Nerd Font" + ]; + serif = [ + "DeepMind Sans" + ]; + sansSerif = [ + "DeepMind Sans" + ]; }; }; }; |