Files
nixos-conf/custom/hyprland.nix
2026-06-02 20:21:32 +02:00

16 lines
279 B
Nix

{ config, pkgs, ... }: {
environment.systemPackages = (with pkgs; [
rofi
hyprcursor
awww
hyprland
hyprlock
hyprsunset
]);
programs.hyprland = {
enable = true;
withUWSM = true; # recommended for most users
xwayland.enable = true;
};
}