10 lines
252 B
Nix
10 lines
252 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
lib.mkIf config.sbruder.gui {
|
|
environment.systemPackages = with pkgs; [
|
|
firefox-wayland
|
|
# Buidling chromium from source on a potato laptop is not fun
|
|
#(ungoogled-chromium.override { useOzone = true; })
|
|
];
|
|
}
|