NixOS-Configuration/common/desktop/hyprland.nix

23 lines
312 B
Nix

{ config, pkgs, ... }:
{
desktop = [ "hyprland" ];
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
environment.systemPackages = (with pkgs; [
waybar
dmenu
wmenu
swaylock
swayidle
]);
fonts.packages = with pkgs; [
font-awesome # Waybar icons
];
}