Changed: Stuff

This commit is contained in:
2025-04-07 23:13:13 +02:00
parent 521120022a
commit bb19cc1377
8 changed files with 193 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
{config, ...}: let
{pkgs, config, ...}: let
browser = ["firefox.desktop"];
# XDG MIME types
@@ -43,5 +43,18 @@ in {
XDG_SCREENSHOTS_DIR = "${config.xdg.userDirs.pictures}/Screenshots";
};
};
portal = {
enable = true;
xdgOpenUsePortal = true;
config = {
common.default = [ "gtk" ];
hyprland.default = [ "gtk" "hyprland" ];
};
extraPortals = [
pkgs.xdg-desktop-portal-gtk
pkgs.xdg-desktop-portal-hyprland
];
};
};
}