diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-03 21:52:55 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-03 21:52:55 +0530 | 
| commit | 61b5e8524eab94275cc9188b373560b646b0f51c (patch) | |
| tree | 4e0cca5792d89d2c3f3007094e28cb4a2dff4a15 /modules/wm_utils.nix | |
| parent | cc83dd631dd27d8aa909d9cdc6b625f25b1b05de (diff) | |
switch to master temporarily
Diffstat (limited to 'modules/wm_utils.nix')
| -rw-r--r-- | modules/wm_utils.nix | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/modules/wm_utils.nix b/modules/wm_utils.nix index da5c672..1f1f417 100644 --- a/modules/wm_utils.nix +++ b/modules/wm_utils.nix @@ -1,6 +1,8 @@  { pkgs, ... }: -{ +let +  wbg = (pkgs.callPackage ../packages/wbg.nix {}); +in {    environment.systemPackages = with pkgs; [      polkit_gnome @@ -12,11 +14,10 @@      wirelesstools      pamixer      brightnessctl -    wbg      networkmanagerapplet      sway-launcher-desktop -  ]; +  ] ++ [ wbg ];    xdg.portal.enable = true;    xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-wlr pkgs.xdg-desktop-portal ]; | 
