Files
nixos/modules/desktop/hyprland.nix
T
2026-06-10 19:34:36 +02:00

21 lines
266 B
Nix

{ pkgs, ... }:
{
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
programs.hyprland = {
enable = true;
withUWSM = true;
};
environment.systemPackages = with pkgs; [
dunst
kitty
waybar
wofi
];
}