15 lines
242 B
Nix
15 lines
242 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
xdg.autostart.enable = lib.mkForce false;
|
|
|
|
xdg.portal.extraPortals = lib.mkForce [ pkgs.xdg-desktop-portal-gtk ];
|
|
|
|
environment.pathsToLink = [
|
|
"/share/xdg-desktop-portal"
|
|
"/share/applications"
|
|
];
|
|
}
|