From e3e6a7dd7bc121d6c977eba3ef1b179128ffb2ab Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 23 Oct 2024 19:37:58 -0400 Subject: [PATCH] hyprland: kitty, wofi, dunst --- modules/nixos/linux/gui/hyprland.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/nixos/linux/gui/hyprland.nix b/modules/nixos/linux/gui/hyprland.nix index ff93461..3d0a2d7 100644 --- a/modules/nixos/linux/gui/hyprland.nix +++ b/modules/nixos/linux/gui/hyprland.nix @@ -11,7 +11,11 @@ in # make sure to also set the portal package, so that they are in sync portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; }; - environment.systemPackages = [ - pkgs.kitty + home-manager.sharedModules = [{ + services.dunst.enable = true; + }]; + environment.systemPackages = with pkgs; [ + kitty + wofi ]; }