nixos-config/modules/web.nix

10 lines
211 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
firefox-wayland
# Buidling chromium from source on a potato laptop is not fun
#(ungoogled-chromium.override { useOzone = true; })
];
}