nixos-config/modules/web.nix

10 lines
252 B
Nix
Raw Normal View History

2020-12-05 13:48:06 +01:00
{ config, lib, pkgs, ... }:
2020-08-22 17:44:39 +02:00
2020-12-05 13:48:06 +01:00
lib.mkIf config.sbruder.gui {
2020-08-22 17:44:39 +02:00
environment.systemPackages = with pkgs; [
firefox-wayland
# Buidling chromium from source on a potato laptop is not fun
#(ungoogled-chromium.override { useOzone = true; })
];
}