12 lines
155 B
Nix
12 lines
155 B
Nix
|
{ config, pkgs, lib, ...}:
|
||
|
{
|
||
|
home.sessionVariables = {
|
||
|
MOZ_ENABLE_WAYLAND = 1;
|
||
|
MOZ_WEBRENDER = 1;
|
||
|
};
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
vscodium
|
||
|
];
|
||
|
}
|