mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2025-01-07 12:11:28 +03:00
15 lines
232 B
Nix
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"
|
||
|
];
|
||
|
};
|
||
|
}
|