nixos/system/greetd.nix
Torjus Håkestad 4cbb83e2e7
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m55s
Fix hyprland launch command
2024-10-10 22:55:00 +02:00

13 lines
251 B
Nix

{ pkgs, ... }:
{
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd \"dbus-run-session Hyprland\"";
user = "greeter";
};
};
};
}