NixOS-Configuration/common/desktop/hyprland.nix

23 lines
312 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
]);
fonts.packages = with pkgs; [
font-awesome # Waybar icons
];
}