nixos/display-manager.nix
2026-03-07 23:16:39 -03:00

24 lines
617 B
Nix

{ config, ... }:
{
services.displayManager.ly = {
enable = true;
settings = {
bg = "0x00000000";
box_title = "It booted, of course.";
animate = true;
animation = "matrix";
doom_fire_height= "5";
doom_fire_spread = "1";
doom_top_color = "0x00332215";
doom_middle_color = "0x00948371";
doom_bottom_color = "0x00FFFFFF";
colormix_col1 = "0xFF8AD2D5";
colormix_col2 = "0xFFFFFFFF";
colormix_col3 = "0xFF765D8F";
border_fg = "0x00000000";
cmatrix_min_codepoint = "0x3000";
cmatrix_max_codepoint = "0x30FF";
};
};
}