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

View file

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