feat: add zen-browser package support to home.nix configuration

This commit is contained in:
DannyDannyDanny 2026-02-25 12:48:27 +01:00
parent 0e3470af5b
commit 19132a127d

View file

@ -173,6 +173,10 @@
# Fonts # Fonts
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
home.packages = with pkgs; [ 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 (includes Michroma)
google-fonts google-fonts
@ -212,7 +216,7 @@
discord discord
mapscii mapscii
mpv mpv
]; ]);
# First HM version for this user config; bump only if you understand the migration notes. # First HM version for this user config; bump only if you understand the migration notes.
home.stateVersion = "25.11"; home.stateVersion = "25.11";