summary refs log tree commit diff stats
path: root/sys/services/greetd/default.nix
blob: 771dccac0780f3ac33d97b205c4b2f7802b59121 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{pkgs, ...}: {
  services.greetd = {
    enable = true;
    settings = {
      default_session = {
        command = "${pkgs.greetd.tuigreet}/bin/tuigreet --cmd sway";
      };
    };
  };
}