mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-31 01:17:26 +02:00
minimal: Fix boot with initrd
This commit is contained in:
parent
82739bcba6
commit
67f57f8e7a
1 changed files with 9 additions and 1 deletions
|
|
@ -10,7 +10,14 @@
|
|||
|
||||
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages;
|
||||
boot.plymouth.enable = true;
|
||||
boot.initrd.systemd.enable = true;
|
||||
boot.initrd = {
|
||||
services.lvm.enable = true;
|
||||
supportedFilesystems = [ "btrfs" ];
|
||||
systemd = {
|
||||
enable = true;
|
||||
emergencyAccess = false;
|
||||
};
|
||||
};
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
|
||||
|
|
@ -25,6 +32,7 @@
|
|||
|
||||
i18n.defaultLocale = "en_GB.UTF-8";
|
||||
console = {
|
||||
earlySetup = true;
|
||||
font = "Lat2-Terminus16";
|
||||
keyMap = "dvorak-programmer";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue