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
|
2023-01-03 21:17:49 -05:00
|
|
|
./waybar.nix
|
2022-01-06 21:14:02 -05:00
|
|
|
];
|
|
|
|
}
|