nixos-config/hosts/thinkpad/modules/greetd/default.nix

12 lines
194 B
Nix
Raw Normal View History

2023-11-16 15:53:15 +01:00
{ pkgs, ... }:
2023-02-21 12:24:34 +01:00
{
services.greetd = {
enable = true;
settings = {
default_session = {
2023-12-17 17:27:20 +01:00
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --cmd river";
2023-02-21 12:24:34 +01:00
};
};
};
}