nix/nixos/programs/hyprland.nix
2024-01-06 17:40:24 +00:00

20 lines
354 B
Nix

{config, ...}: let
user = config.user;
in {
services.greetd = {
enable = true;
settings = rec {
hypr_session = {
command = "Hyprland";
user = user;
};
default_session = hypr_session;
};
};
home-manager.users.${user}.imports = [
{
wayland.windowManager.hyprland.enable = true;
}
];
}