mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 15:53:55 -05:00
nixos: remove plymouth
This commit is contained in:
parent
094fb25714
commit
6233a45649
|
@ -9,10 +9,10 @@
|
|||
./networking
|
||||
./nix
|
||||
./nixpkgs
|
||||
./plymouth
|
||||
];
|
||||
|
||||
config = lib.mkIf config.ar.base.enable {
|
||||
|
||||
console.useXkbConfig = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -87,12 +87,6 @@
|
|||
&& !(config.networking.hostName == "mauville");
|
||||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
plymouth.enable = lib.mkOption {
|
||||
description = "Plymouth boot screen.";
|
||||
default = config.ar.base.enable;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue