Only install browsers on non-headless systems

This commit is contained in:
Oliver Davies 2025-01-05 16:26:35 +00:00
parent 8d508dad81
commit 1156a9af04

View file

@ -11,9 +11,12 @@
"wheel" "wheel"
]; ];
packages = with pkgs; [ packages =
with pkgs;
[ ]
++ pkgs.lib.optionals (!headless) [
brave brave
chromium firefox
]; ];
}; };
} }