mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
16 lines
271 B
Nix
16 lines
271 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.variables = { BROWSER = "firefox"; };
|
|
|
|
xdg = {
|
|
portal = {
|
|
enable = true;
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-wlr
|
|
xdg-desktop-portal-gtk
|
|
];
|
|
gtkUsePortal = true;
|
|
};
|
|
};
|
|
}
|