fix(nix): Correctly configure required kernel modules & VMWare guest
This commit is contained in:
parent
f9641cc1ed
commit
41a213054d
1 changed files with 10 additions and 0 deletions
|
@ -7,12 +7,22 @@
|
|||
boot.loader.grub.version = 2;
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"ata_piix"
|
||||
"mptspi"
|
||||
"sd_mod"
|
||||
"sr_mod"
|
||||
];
|
||||
|
||||
# Configure root disk
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
services.vmwareGuest.enable = true;
|
||||
services.vmwareGuest.headless = true;
|
||||
|
||||
time.timeZone = "Europe/Oslo";
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
Loading…
Reference in a new issue