From 19132a127d578d5fcc97022633b12675771f19bd Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Wed, 25 Feb 2026 12:48:27 +0100 Subject: [PATCH] feat: add zen-browser package support to home.nix configuration :sparkles: --- nixos/home/danny/home.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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";