Add greetd
Some checks are pending
pre-commit / pre-commit (push) Waiting to run

This commit is contained in:
2024-09-28 13:51:51 +02:00
parent 0821335f51
commit a7018d8acb
2 changed files with 18 additions and 5 deletions

12
system/greetd.nix Normal file
View File

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