11 lines
151 B
Nix
11 lines
151 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
firefox
|
|
];
|
|
|
|
environment.variables = {
|
|
MOZ_ENABLE_WAYLAND = 1;
|
|
};
|
|
}
|