nixos-config/modules/system/browser/default.nix

8 lines
87 B
Nix
Raw Normal View History

2024-08-10 20:30:24 +02:00
{ ... }:
{
2024-09-04 16:15:43 +02:00
environment.systemPackages =
(with pkgs; [
google-chrome
]);
2024-08-10 20:30:24 +02:00
}