dotfiles/modules/greeter/gdm/default.nix

30 lines
420 B
Nix
Raw Normal View History

2025-02-11 11:24:10 +00:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.modules.gdm;
in
{
options.modules.gdm = {
enable = mkEnableOption "gdm";
};
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
};
};
}