diff --git a/nixos/home/danny/home.nix b/nixos/home/danny/home.nix index 9fb38ee..d14b454 100644 --- a/nixos/home/danny/home.nix +++ b/nixos/home/danny/home.nix @@ -173,6 +173,10 @@ # Fonts fonts.fontconfig.enable = true; home.packages = with pkgs; [ + # Zen Browser (Firefox fork; from flake, supports aarch64-darwin) + ] ++ (lib.optionals (zen-browser != null) [ + zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default + ]) ++ (with pkgs; [ # Google Fonts (includes Michroma) google-fonts @@ -212,7 +216,7 @@ discord mapscii mpv - ]; + ]); # First HM version for this user config; bump only if you understand the migration notes. home.stateVersion = "25.11";