Files
nixos-config/root/desktop/browser/default.nix
2025-05-29 13:53:53 +02:00

9 lines
148 B
Nix

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