nixos: remove plymouth

This commit is contained in:
Aly Raffauf 2024-07-07 17:52:42 -04:00
parent 094fb25714
commit 6233a45649
3 changed files with 1 additions and 25 deletions

View file

@ -9,10 +9,10 @@
./networking ./networking
./nix ./nix
./nixpkgs ./nixpkgs
./plymouth
]; ];
config = lib.mkIf config.ar.base.enable { config = lib.mkIf config.ar.base.enable {
console.useXkbConfig = true; console.useXkbConfig = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -1,18 +0,0 @@
{
config,
inputs,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.base.plymouth.enable {
boot = {
consoleLogLevel = 0;
initrd.verbose = false;
plymouth = {
enable = true;
font = "${pkgs.nerdfonts}/share/fonts/truetype/NerdFonts/NotoSansNerdFont-Regular.ttf";
};
};
};
}

View file

@ -87,12 +87,6 @@
&& !(config.networking.hostName == "mauville"); && !(config.networking.hostName == "mauville");
type = lib.types.bool; type = lib.types.bool;
}; };
plymouth.enable = lib.mkOption {
description = "Plymouth boot screen.";
default = config.ar.base.enable;
type = lib.types.bool;
};
}; };
}; };
} }