mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -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;
|
|
};
|
|
};
|
|
}
|