This commit is contained in:
天クマ 2026-02-02 21:12:25 -03:00
commit ac19fef235
4 changed files with 284 additions and 0 deletions

19
display-manager.nix Normal file
View file

@ -0,0 +1,19 @@
{ config, ... }:
{
services.displayManager.ly = {
enable = true;
settings = {
bg = "0x00000000";
border_fg = "0x00332215";
box_title = "It booted, of course.";
animate = true;
animation = "doom";
doom_fire_height= "5";
doom_fire_spread = "1";
doom_top_color = "0x00332215";
doom_middle_color = "0x00948371";
doom_bottom_color = "0x00FFFFFF";
};
};
}