Files
nix-config/hosts/common/optional/hyprland.nix
2026-03-25 15:17:28 +05:00

28 lines
539 B
Nix

{
inputs,
pkgs,
...
}: {
programs = {
hyprland = {
enable = true;
xwayland.enable = true;
systemd.setPath.enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
hyprlock.enable = true;
};
services.hypridle.enable = true;
environment.systemPackages = with pkgs; [
hyprshot
hyprpolkitagent
mako
waybar
wofi
];
}