Torjus Håkestad
4cbb83e2e7
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m55s
13 lines
251 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|