nixos/modules/hyprland.nix
2025-08-13 09:16:00 +01:00

20 lines
261 B
Nix

{ config, lib, pkgs, ... }:
{
programs.hyprland= {
enable = true; # enable Hyprland
xwayland.enable = true;
};
environment.systemPackages = with pkgs; [
wofi
hyprpaper
waybar
hyprlock
kitty
libnotify
swaynotificationcenter
nerd-fonts.zed-mono
];
}