mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
18 lines
283 B
Nix
18 lines
283 B
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
config = lib.mkIf config.fireproof.desktop.enable {
|
||
|
|
services.greetd = {
|
||
|
|
enable = true;
|
||
|
|
settings = {
|
||
|
|
default_session = {
|
||
|
|
command = "${pkgs.tuigreet}/bin/tuigreet --user-menu";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|