Files
nixos-conf/custom/hyprland.nix
2026-04-01 07:45:17 +02:00

16 lines
280 B
Nix

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