configs/laptop/tuigreet.nix
2024-05-20 12:24:36 +02:00

17 lines
301 B
Nix

{ pkgs, ... }:
{
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd sway";
user = "geir";
};
};
};
environment.systemPackages = with pkgs;
[
greetd.tuigreet
];
}