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