17 lines
301 B
Nix
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
|
||
|
];
|
||
|
}
|