all repos — nixfiles @ 4d656564a8693818146ed8b59d7c9f81af21169d

System and user configuration, managed by nix and home-manager

user-interface: remove inter font

Alan Pearce
commit

4d656564a8693818146ed8b59d7c9f81af21169d

parent

620789bcb1177e9b8b8bf90895cf2ef41e934577

1 file changed, 16 insertions(+), 19 deletions(-)

jump to
M user/settings/user-interface.nixuser/settings/user-interface.nix
@@ -1,5 +1,5 @@
-{ config -, pkgs +{ pkgs +, lib , ... }: let
@@ -24,23 +24,20 @@ keepassxc
]; }; }; - 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"; }