diff options
author | Alan Pearce | 2025-03-25 23:30:05 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-25 23:30:05 +0100 |
commit | 4d656564a8693818146ed8b59d7c9f81af21169d (patch) | |
tree | fdea3d473d745110670e580c0e50ec548a9dbe70 | |
parent | 620789bcb1177e9b8b8bf90895cf2ef41e934577 (diff) | |
download | nixfiles-4d656564a8693818146ed8b59d7c9f81af21169d.tar.lz nixfiles-4d656564a8693818146ed8b59d7c9f81af21169d.tar.zst nixfiles-4d656564a8693818146ed8b59d7c9f81af21169d.zip |
user-interface: remove inter font
-rw-r--r-- | user/settings/user-interface.nix | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/user/settings/user-interface.nix b/user/settings/user-interface.nix index a7dde811..9b413ee7 100644 --- a/user/settings/user-interface.nix +++ b/user/settings/user-interface.nix @@ -1,5 +1,5 @@ -{ config -, pkgs +{ pkgs +, lib , ... }: let @@ -24,23 +24,20 @@ in ]; }; }; - home.packages = with pkgs; - [ - inter - ] ++ (with pkgs.nerd-fonts; [ - blex-mono - jetbrains-mono - recursive-mono - symbols-only - ]) - ++ lib.optionals (!stdenv.isDarwin) (with pkgs; [ - (discord.override { withOpenASAR = true; }) + home.packages = (with pkgs.nerd-fonts; [ + blex-mono + jetbrains-mono + recursive-mono + symbols-only + ]) + ++ lib.optionals (!stdenv.isDarwin) (with pkgs; [ + (discord.override { withOpenASAR = true; }) - zeal - falkon - beeper - kdePackages.neochat - kdePackages.kleopatra - ]); + zeal + falkon + beeper + kdePackages.neochat + kdePackages.kleopatra + ]); services.emacs.startWithUserSession = "graphical"; } |