nixos-config/home-manager/wayland/default.nix

20 lines
316 B
Nix
Raw Normal View History

2024-02-09 18:27:44 -05:00
{ pkgs, ... }:
2022-01-06 21:14:02 -05:00
{
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = "1";
MOZ_USE_XINPUT2 = "1";
};
2024-02-09 18:27:44 -05:00
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
config.common.default = [ "gtk" ];
};
2022-01-06 21:14:02 -05:00
imports = [
2024-02-09 17:17:48 -05:00
./hyprland.nix
./wltools.nix
./waybar.nix
2022-01-06 21:14:02 -05:00
];
}