12 lines
256 B
Nix
12 lines
256 B
Nix
{
|
|
user ? throw "user argument is required",
|
|
home ? throw "home argument is required",
|
|
}:
|
|
{ config, pkgs, ... }:
|
|
{
|
|
home-manager.users.${user}.xdg.portal = {
|
|
xdgOpenUsePortal = true;
|
|
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
|
|
};
|
|
}
|