diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-20 13:37:31 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-20 13:37:31 +0200 |
| commit | fc4fc2457b0733b7cc5e300f4e71e9865d374263 (patch) | |
| tree | fb2daddf03663913df1129128c202860c20d4669 | |
| parent | 6dbc0f8684cf3af530ea964ca18567a6b14a7ebc (diff) | |
Added font configuration
| -rw-r--r-- | home/rices/finals/home.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/home/rices/finals/home.nix b/home/rices/finals/home.nix index e2c0834..74473f9 100644 --- a/home/rices/finals/home.nix +++ b/home/rices/finals/home.nix @@ -14,6 +14,7 @@ home.packages = with pkgs; [ hyprpicker + bemoji xwayland-satellite ]; @@ -21,4 +22,14 @@ enable = true; enableSshSupport = true; }; + + fonts.fontconfig = { + enable = true; + defaultFonts = { + emoji = ["Noto Color Emoji"]; + monospace = []; + sansSerif = ["Inter"]; + serif = []; + }; + }; } |
