Files
nix/hosts/common/configs/user/gui/xdg/default.nix
2025-06-24 10:13:05 +01:00

9 lines
214 B
Nix

{
user ? throw "user argument is required",
home ? throw "home argument is required",
}:
{ config, pkgs, ... }:
{
home-manager.users.${user}.xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
}