home: add gnome

This commit is contained in:
genofire 2021-11-26 21:13:18 +01:00
parent 2db41e0489
commit 877fc0f997
2 changed files with 12 additions and 1 deletions

11
home/gnome.nix Normal file
View File

@ -0,0 +1,11 @@
{ config, pkgs, lib, ...}:
{
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
MOZ_WEBRENDER = 1;
};
home.packages = with pkgs; [
vscodium
];
}

View File

@ -3,6 +3,6 @@
imports = [
./repo/default.nix
./repo/desktop.nix
./repo/sway.nix
./repo/gnome.nix
];
}