mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:53:55 -05:00
all: moved plymouth config into modules
This commit is contained in:
parent
4d079f39bb
commit
2daf9105e6
|
@ -45,6 +45,7 @@ in {
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../users/aly.nix
|
../../users/aly.nix
|
||||||
../../system
|
../../system
|
||||||
|
../../modules/plymouth.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
@ -54,11 +55,6 @@ in {
|
||||||
# Pull latest Linux kernel.
|
# Pull latest Linux kernel.
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
|
||||||
boot.initrd.verbose = false;
|
|
||||||
boot.consoleLogLevel = 0;
|
|
||||||
|
|
||||||
boot.plymouth.enable = true;
|
|
||||||
|
|
||||||
networking.hostName = "petalburg"; # Define your hostname.
|
networking.hostName = "petalburg"; # Define your hostname.
|
||||||
|
|
||||||
hardware.sensor.iio.enable = true;
|
hardware.sensor.iio.enable = true;
|
||||||
|
|
8
modules/plymouth.nix
Normal file
8
modules/plymouth.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
boot.initrd.verbose = false;
|
||||||
|
boot.consoleLogLevel = 0;
|
||||||
|
|
||||||
|
boot.plymouth.enable = true;
|
||||||
|
}
|
Loading…
Reference in a new issue