mio-ops/hardware/linode_vm.nix

40 lines
873 B
Nix
Raw Normal View History

2019-07-02 11:52:10 +10:00
# Configuration common to all my Linode VMs
{
2022-03-08 00:26:15 +10:00
config,
pkgs,
lib,
...
}: {
2019-07-02 11:52:10 +10:00
imports = [
# Import the NixOS Qemu guest settings
<nixpkgs/nixos/modules/profiles/qemu-guest.nix>
];
2022-03-08 00:26:15 +10:00
boot.initrd.availableKernelModules = ["virtio_pci" "ahci" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = [];
boot.extraModulePackages = [];
boot.kernelParams = ["console=ttyS0,19200n8"];
2019-07-02 11:52:10 +10:00
boot.loader = {
grub = {
extraConfig = ''
serial --speed=19200 --unit=0 --word=8 --parity=no --stop=1;
terminal_input serial;
terminal_output serial
'';
device = "nodev";
};
timeout = 10;
};
# File systems configuration for the Linode VMs
2021-11-16 14:57:23 +10:00
fileSystems."/" = {
device = "/dev/sda";
fsType = "ext4";
};
2019-07-02 11:52:10 +10:00
2022-03-08 00:26:15 +10:00
swapDevices = [{device = "/dev/sdb";}];
2019-07-02 11:52:10 +10:00
2022-12-09 09:27:50 +10:00
nix.settings.max-jobs = lib.mkDefault 4;
2019-07-02 11:52:10 +10:00
}