This commit is contained in:
ediblerope 2026-05-14 15:06:48 +01:00
parent 4c01b93331
commit 9d60f6f307

View file

@ -8,6 +8,22 @@
services.desktopManager.gnome.enable = true; services.desktopManager.gnome.enable = true;
boot.plymouth.enable = false; boot.plymouth.enable = false;
# Display wallpaper on the framebuffer so it shows behind ly.
# fbi writes to /dev/fb0 and exits, leaving the image in place.
systemd.services.ly-wallpaper = {
description = "Framebuffer wallpaper for ly";
before = [ "display-manager.service" ];
wantedBy = [ "display-manager.service" ];
serviceConfig = {
Type = "oneshot";
StandardInput = "tty";
TTYPath = "/dev/tty1";
ExecStart = "${pkgs.fbida}/bin/fbi -T 1 -a --noverbose -1 ${
builtins.path { name = "wallpaper.png"; path = inputs.self + "/walls/wallpaper.png"; }
}";
};
};
# Flatpak for ad-hoc app installs via Bazaar # Flatpak for ad-hoc app installs via Bazaar
services.flatpak.enable = true; services.flatpak.enable = true;