1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-03-02 04:50:56 +01:00
nixos-config/hosts/thinkpad/modules/greetd/default.nix

11 lines
193 B
Nix

{ pkgs, ... }:
{
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --cmd sway";
};
};
};
}