nix/home/gnome.nix

12 lines
155 B
Nix
Raw Normal View History

2021-11-26 21:13:18 +01:00
{ config, pkgs, lib, ...}:
{
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
MOZ_WEBRENDER = 1;
};
home.packages = with pkgs; [
vscodium
];
}