renamed files, boot splash
This commit is contained in:
parent
bd9bbd152b
commit
018a036601
5 changed files with 36 additions and 20 deletions
|
|
@ -17,7 +17,7 @@
|
||||||
../system/impermanence.nix
|
../system/impermanence.nix
|
||||||
../desktop/desktop-entries.nix
|
../desktop/desktop-entries.nix
|
||||||
../desktop/file-manager.nix
|
../desktop/file-manager.nix
|
||||||
../desktop/gnome-minimal.nix
|
../desktop/gnome.nix
|
||||||
../users/admin.nix
|
../users/admin.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./locale.nix
|
./locale.nix
|
||||||
./kernel.nix
|
./kernel.nix
|
||||||
./boot-efi.nix
|
./boot.nix
|
||||||
./nix-core.nix
|
./nix-core.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
|
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
{ lib, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
boot.supportedFilesystems = [
|
|
||||||
"btrfs"
|
|
||||||
"ext4"
|
|
||||||
"vfat"
|
|
||||||
"xfs"
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.loader = {
|
|
||||||
systemd-boot = {
|
|
||||||
enable = true;
|
|
||||||
configurationLimit = lib.mkDefault 10;
|
|
||||||
};
|
|
||||||
efi.canTouchEfiVariables = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
34
modules/system/boot.nix
Normal file
34
modules/system/boot.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
boot = {
|
||||||
|
supportedFilesystems = [
|
||||||
|
"btrfs"
|
||||||
|
"ext4"
|
||||||
|
"vfat"
|
||||||
|
"xfs"
|
||||||
|
];
|
||||||
|
|
||||||
|
loader = {
|
||||||
|
systemd-boot = {
|
||||||
|
enable = true;
|
||||||
|
configurationLimit = lib.mkDefault 10;
|
||||||
|
};
|
||||||
|
efi.canTouchEfiVariables = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
plymouth = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
consoleLogLevel = 3;
|
||||||
|
initrd.verbose = false;
|
||||||
|
kernelParams = [
|
||||||
|
"quiet"
|
||||||
|
"splash"
|
||||||
|
"boot.shell_on_fail"
|
||||||
|
"udev.log_priority=3"
|
||||||
|
"rd.systemd.show_status=auto"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue