commit | 21091a1c765d82adfc3fd11694d93e59003c0505 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Mon Feb 13 07:59:31 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Sun Feb 26 13:09:39 2023 +0000 |
tree | 3ba1a0cc2252e4520d9f26606e35ed50f86dae77 | |
parent | 66548246d52fc64e122d8a1f438d358902e7eb7f [diff] |
Update boot parameters to replace all startup logs with plymouth
diff --git a/modules/plymouth.nix b/modules/plymouth.nix index cbb9bb5..907c2e9 100644 --- a/modules/plymouth.nix +++ b/modules/plymouth.nix
@@ -1,5 +1,7 @@ { - boot.plymouth.enable = true; - boot.initrd.systemd.enable = true; - boot.kernelParams = ["quiet"]; + config = { + boot.plymouth.enable = true; + boot.initrd.systemd.enable = true; + boot.kernelParams = [ "quiet" ]; + }; }