12 lines
227 B
Nix
12 lines
227 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
{
|
||
|
services.greetd = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
default_session.command = "${lib.getExe pkgs.greetd.tuigreet} --cmd wayland-session";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
security.pam.services.swaylock = { };
|
||
|
}
|