14 lines
150 B
Nix
14 lines
150 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
cfg = config.profiles.desktop;
|
||
|
in
|
||
|
{
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
xdg.portal.xdgOpenUsePortal = true;
|
||
|
};
|
||
|
}
|