all repos — nixfiles @ ebde3391182c80eebc72353511ad28e5ac32e448

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

ui: remove non-darwin package setup

Alan Pearce
commit

ebde3391182c80eebc72353511ad28e5ac32e448

parent

b1321de578642bb7f91c154b52837ab52dc01019

1 file changed, 5 insertions(+), 15 deletions(-)

changed files
M user/settings/user-interface.nixuser/settings/user-interface.nix
@@ -1,6 +1,5 @@
{ pkgs, - lib, ... }: let
@@ -25,24 +24,15 @@ keepassxc
]; }; }; - home.packages = - (with pkgs.nerd-fonts; [ + 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 - beeper - kdePackages.neochat - kdePackages.kleopatra - ] - ); + ] + ); services.lorri.enableNotifications = true; services.emacs.startWithUserSession = "graphical"; }