From 3a6a4220d140a32ed01975caee52ecdfa083cac6 Mon Sep 17 00:00:00 2001 From: chaos Date: Mon, 12 Aug 2024 15:23:32 +0100 Subject: [PATCH] remove plymouth support --- modules/nixos/encryptedDrive.nix | 13 ------------- profiles/home-manager/gaming/minecraft.nix | 2 +- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/modules/nixos/encryptedDrive.nix b/modules/nixos/encryptedDrive.nix index b16ef63..38bed04 100644 --- a/modules/nixos/encryptedDrive.nix +++ b/modules/nixos/encryptedDrive.nix @@ -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}" = { diff --git a/profiles/home-manager/gaming/minecraft.nix b/profiles/home-manager/gaming/minecraft.nix index 22b171d..3e09e7e 100644 --- a/profiles/home-manager/gaming/minecraft.nix +++ b/profiles/home-manager/gaming/minecraft.nix @@ -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; }) ];