NixOS-Configuration/common/desktop/hyprland.nix

24 lines
326 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
2024-01-26 03:08:29 +00:00
hyprpaper
]);
fonts.packages = with pkgs; [
font-awesome # Waybar icons
];
}