pantheon/systems/modules/hyprland.nix
2025-03-05 08:53:38 +08:00

14 lines
394 B
Nix

{ inputs, pkgs, ... }: {
programs.uwsm = {
enable = false;
};
programs.hyprland = {
enable = true;
#withUWSN = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
environment.systemPackages = with pkgs; [
dunst
];
}