remove plymouth support

This commit is contained in:
chaos 2024-08-12 15:23:32 +01:00
parent aaf48cc983
commit 3a6a4220d1
No known key found for this signature in database
2 changed files with 1 additions and 14 deletions

View file

@ -1,7 +1,6 @@
{
self,
config,
pkgs,
lib,
...
}: let
@ -52,12 +51,6 @@ in {
mkdir -m 0755 -p /keys
mkdir -m 0755 -p ${encryptedUSB.mountpoint}
${
if config.boot.plymouth.enable
then "${pkgs.plymouth}/bin/plymouth hide-splash"
else ""
}
${
if cfg.allowPasswordDecrypt
then ''
@ -97,12 +90,6 @@ in {
else
touch /keys/${config.networking.hostName}.key
fi
${
if config.boot.plymouth.enable
then "${pkgs.plymouth}/bin/plymouth show-splash"
else ""
}
'');
initrd.luks.devices = {
"${driveData.mapperName}" = {

View file

@ -1,7 +1,7 @@
{pkgs, ...}: {
home.packages = with pkgs; [
(prismlauncher.override {
jdks = with pkgs; [ jdk8 jdk11 jdk17 jdk21 ];
jdks = with pkgs; [jdk8 jdk11 jdk17 jdk21];
withWaylandGLFW = true;
})
];