mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
22 lines
428 B
Nix
Executable file
22 lines
428 B
Nix
Executable file
{ pkgs, flake, ... }:
|
|
{
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
xdg = {
|
|
portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
xdgOpenUsePortal = true;
|
|
extraPortals = builtins.attrValues {
|
|
inherit (pkgs)
|
|
xdg-desktop-portal-wlr
|
|
xdg-desktop-portal-gtk
|
|
;
|
|
inherit (pkgs.kdePackages)
|
|
xdg-desktop-portal-kde
|
|
;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|