dotfiles/modules/greeter/ly/default.nix

30 lines
417 B
Nix
Raw Normal View History

2025-02-11 11:24:10 +00:00
{
config,
lib,
pkgs,
...
}:
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-11 18:30:20 +00:00
box_title = " Hewwo! >_< :3 ";
2025-02-11 14:48:55 +00:00
clear_password = true;
load = true;
save = true;
};
2025-02-11 11:24:10 +00:00
};
};
}