grimm-nixos-laptop/modules/xdg.nix

17 lines
289 B
Nix
Raw Normal View History

2023-11-29 22:56:30 +01:00
{pkgs, ...}:
2023-11-28 23:24:43 +01:00
{
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
# xdg-desktop-portal-kde
# xdg-desktop-portal-gtk
2023-11-28 23:24:43 +01:00
];
};
environment.sessionVariables = {
XDG_CONFIG_HOME = "$HOME/.config";
};
}