nix/nixos/programs/auto-login.nix
2024-02-10 13:41:58 +00:00

13 lines
208 B
Nix

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