nix/nixos/programs/auto-login.nix

10 lines
161 B
Nix

command: {user, ...}: {
services.greetd = {
enable = true;
settings = {
default_session = {
inherit command user;
};
};
};
}