diff options
| author | stefan <stefan@s00.xyz> | 2025-05-17 16:34:23 -0400 |
|---|---|---|
| committer | stefan <stefan@s00.xyz> | 2025-05-17 16:34:23 -0400 |
| commit | 2d701706abcc131aea8b2758cfff0acdc18a4b74 (patch) | |
| tree | 64feef0594c946767fcda60530ca4c6869af9a05 /modules/global.nix | |
| parent | eb7c71cb218c0a11eda9b3040c111d2924bf842c (diff) | |
| download | home-2d701706abcc131aea8b2758cfff0acdc18a4b74.tar.gz | |
update
Diffstat (limited to 'modules/global.nix')
| -rw-r--r-- | modules/global.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/modules/global.nix b/modules/global.nix index 0a80fdc..eec259e 100644 --- a/modules/global.nix +++ b/modules/global.nix @@ -68,6 +68,8 @@ in }; }; + fonts.fontconfig.enable = true; + dconf = { enable = true; settings = { @@ -110,14 +112,17 @@ in ]; packages = with pkgs; [ - nerd-fonts.comic-shanns-mono eza + fanwood ripgrep elan dmenu berkeley-mono - fanwood - ] ++ (lib.optional cfg.notNixOS nixgl.auto.nixGLDefault) + tamzen + roboto + cozette + ] ++ (builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts)) + ++ (lib.optional cfg.notNixOS nixgl.auto.nixGLDefault) ++ (lib.optionals cfg.wayland [ wl-clipboard |