6 lines
137 B
Nix
6 lines
137 B
Nix
{ user, home }:
|
|
{ config, pkgs, ... }:
|
|
{
|
|
home-manager.users.${user}.xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
|
|
}
|