blob: 86d8f259f1921e271c9f37ab1ccdb8a9dd2091af (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ pkgs, home, fetchFromGitHub, ... }:
let
dwl-custom = (pkgs.callPackage ../packages/dwl-custom.nix {});
in {
xdg.portal.enable = true;
xdg.portal.configPackages = [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-hyprland ];
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-hyprland ];
home.packages = [ dwl-custom ];
}
|