nix/nixos/programs/hyprland.nix
2024-01-06 22:38:07 +00:00

18 lines
327 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 = [
../../home/programs/hyprland.nix
];
}