diff --git a/nixos/boot/default.nix b/nixos/boot/default.nix index 8f8859a..f6ae6be 100644 --- a/nixos/boot/default.nix +++ b/nixos/boot/default.nix @@ -1,7 +1,6 @@ {...}: { imports = [ ./boot.nix - ./plymouth.nix ./sysctl.nix ]; } diff --git a/nixos/boot/plymouth.nix b/nixos/boot/plymouth.nix deleted file mode 100644 index ce0bde3..0000000 --- a/nixos/boot/plymouth.nix +++ /dev/null @@ -1,3 +0,0 @@ -{lib, ...}: { - boot.plymouth.enable = lib.mkDefault true; # mkDefault for headless devices, check out server.nix -} diff --git a/nixos/presets/desktop.nix b/nixos/presets/desktop.nix index 198243b..fb1024c 100644 --- a/nixos/presets/desktop.nix +++ b/nixos/presets/desktop.nix @@ -5,4 +5,5 @@ ]; boot.kernelPackages = pkgs.linuxPackages_zen; + boot.plymouth.enable = true; } diff --git a/nixos/presets/server.nix b/nixos/presets/server.nix index 4349936..bf2b052 100755 --- a/nixos/presets/server.nix +++ b/nixos/presets/server.nix @@ -4,5 +4,4 @@ imports = [ ./core.nix ]; - boot.plymouth.enable = false; }