mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
10 lines
185 B
Nix
10 lines
185 B
Nix
{pkgs, ...}: {
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.tuigreet}/bin/tuigreet --user-menu";
|
|
};
|
|
};
|
|
};
|
|
}
|