diff options
Diffstat (limited to 'config/dwl.nix')
| -rw-r--r-- | config/dwl.nix | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/config/dwl.nix b/config/dwl.nix new file mode 100644 index 0000000..86d8f25 --- /dev/null +++ b/config/dwl.nix @@ -0,0 +1,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 ]; +} | 
