nixos-config/modules/web.nix
2020-08-22 17:44:39 +02:00

11 lines
265 B
Nix

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