cartierf89 b5dfc7998d nix os
2025-08-19 11:52:43 -04:00

21 lines
273 B
Nix
Executable File

{
config,
pkgs,
lib,
inputs,
...
}:
{
# Configure all the xdg stuff so apps work correctly
xdg = {
portal = {
enable = true;
extraPortals = [
pkgs.xdg-desktop-portal-gtk
pkgs.xdg-desktop-portal-hyprland
];
};
};
}