diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-02-02 15:55:42 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-02-02 15:55:42 +0530 | 
| commit | 5055c72d26569d352b0273cd79544ece594763b2 (patch) | |
| tree | cc2b5744e67e9a8e9c4294d3a3e0a1769a61d83f /config/dwl.nix | |
| parent | 4803f1aac7f36c45c392b50869cd91d097e413c9 (diff) | |
remove dwlb
Diffstat (limited to 'config/dwl.nix')
| -rw-r--r-- | config/dwl.nix | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/config/dwl.nix b/config/dwl.nix index 86d8f25..e5a77d5 100644 --- a/config/dwl.nix +++ b/config/dwl.nix @@ -1,11 +1,11 @@  { pkgs, home, fetchFromGitHub, ... }:  let -  dwl-custom = (pkgs.callPackage ../packages/dwl-custom.nix {}); +  dwl = (pkgs.callPackage ../packages/dwl.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 ]; +  home.packages = [ dwl ];  } | 
