nixos_config/hosts/common/wm/hyprland.nix
2025-08-24 16:05:54 +02:00

21 lines
865 B
Nix

{ config, pkgs, lib, ... }:
{
programs.hyprland = {
enable = true;
withUWSM = true; # recommended for most users
xwayland.enable = true; # Xwayland can be disabled.
};
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd hyprland";
user = "alisceon";
};
};
};
environment.systemPackages = with
pkgs; [
kitty
];
}