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

23 lines
374 B
Nix

{ config, lib, pkgs, ... }:
{
config = lib.mkIf (config.profiles.desktop == "hyprland") {
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
programs.hyprland = {
enable = true;
withUWSM = true;
};
environment.systemPackages = with pkgs; [
dunst
kitty
waybar
wofi
];
};
}