This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/greetd.nix

15 lines
215 B
Nix

{ ... }:
{
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "sway";
user = "mandlm";
};
default_session = initial_session;
};
};
}