1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-12 15:24:14 +03:00
mobile-nixos/modules/plymouth.nix
2022-10-13 20:23:13 -04:00

15 lines
232 B
Nix

{ config, lib, ... }:
let
inherit (lib)
mkIf
;
in
{
config = mkIf (config.mobile.boot.stage-1.enable && config.boot.plymouth.enable) {
systemd.services.plymouth-start.wantedBy = [
"sysinit.target"
];
};
}