Files
nixos/desktop-environment/window-manager.nix
2026-02-26 14:35:45 +01:00

21 lines
343 B
Nix

{ pkgs, ... }:
{
programs.hyprland = {
enable = true;
withUWSM = true;
xwayland.enable = true;
};
environment.systemPackages = with pkgs; [
wofi
waybar
grim
swaynotificationcenter
swaylock
hyprpaper
lxsession
hyprshot
wayvnc
];
}