24 lines
381 B
Nix
24 lines
381 B
Nix
{inputs, pkgs, ...}:
|
|
{
|
|
xdg.enable = true;
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
configPackages = [ pkgs.hyprland ];
|
|
|
|
extraPortals = [
|
|
pkgs.xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
|
|
|
|
xdg.userDirs = {
|
|
enable = true;
|
|
createDirectories = true;
|
|
desktop = "Desktop";
|
|
documents = "Documents";
|
|
# downloads = "Downloads";
|
|
pictures = "Pictures";
|
|
};
|
|
}
|