kilgharrah: rearrange and split up configuration
This commit is contained in:
parent
84e44962ee
commit
09087ba199
7 changed files with 100 additions and 109 deletions
14
hosts/kilgharrah/boot.nix
Normal file
14
hosts/kilgharrah/boot.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
boot = {
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.systemd-boot.editor = false;
|
||||
loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
|
||||
supportedFilesystems = [ "ntfs" ]; # for USB drives
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue