1
0
Fork 0
puter/profiles/desktop/xdg.nix

14 lines
150 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{
config,
lib,
...
}:
let
cfg = config.profiles.desktop;
in
{
config = lib.mkIf cfg.enable {
xdg.portal.xdgOpenUsePortal = true;
};
}