Files
nixos-config/root/desktop/browser/default.nix
2026-02-12 14:17:28 +01:00

9 lines
148 B
Nix

# Only install Chrome. Declaritive options not needed.
{ pkgs, ... }:
{
environment.systemPackages =
(with pkgs; [
google-chrome
]);
}