move more modules
This commit is contained in:
parent
1f1b901330
commit
a208ca4df2
9 changed files with 70 additions and 74 deletions
11
nixosModules/quiet-boot.nix
Normal file
11
nixosModules/quiet-boot.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
boot = {
|
||||
kernelParams = [
|
||||
"quiet"
|
||||
"udev.log_level=3"
|
||||
];
|
||||
consoleLogLevel = 0;
|
||||
initrd.verbose = false;
|
||||
plymouth.enable = true;
|
||||
};
|
||||
}
|
11
nixosModules/systemd-boot.nix
Normal file
11
nixosModules/systemd-boot.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
boot.loader = {
|
||||
timeout = 3;
|
||||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
editor = false; # do not allow changing kernel parameters
|
||||
consoleMode = "max";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue