nixos-config/modules/web.nix

10 lines
211 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
firefox-wayland
# Buidling chromium from source on a potato laptop is not fun
#(ungoogled-chromium.override { useOzone = true; })
];
}