dotfiles/modules/greeter/ly/default.nix

31 lines
468 B
Nix
Raw Normal View History

2025-02-11 11:24:10 +00:00
{
config,
lib,
...
}:
with lib;
let
2025-02-11 21:21:52 +00:00
cfg = config.modules.ly;
2025-02-11 11:24:10 +00:00
in
{
2025-02-11 21:21:52 +00:00
options.modules.ly = {
enable = mkEnableOption "ly";
2025-02-11 11:24:10 +00:00
};
config = mkIf cfg.enable {
2025-02-11 14:48:55 +00:00
services.displayManager.ly = {
2025-02-11 11:24:10 +00:00
enable = true;
2025-02-11 14:48:55 +00:00
settings = {
animation = "matrix";
2025-02-12 02:23:49 +00:00
animation_refresh_ms = 32;
box_title = "Hewwo! >_< :3";
2025-02-11 14:48:55 +00:00
clear_password = true;
load = true;
save = true;
xinitrc = "null";
2025-02-11 14:48:55 +00:00
};
2025-02-11 11:24:10 +00:00
};
};
}