NixOS-Configuration/common/desktop/hyprland.nix

19 lines
242 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2024-01-11 21:14:59 +00:00
desktop = [ "hyprland" ];
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
environment.systemPackages = (with pkgs; [
waybar
dmenu
wmenu
swaylock
swayidle
]);
}