os/hosts/pioneer-momo-koeln/hardware-configuration.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.3 KiB
Nix
Raw Normal View History

2023-03-06 23:48:42 +00:00
{
config,
pkgs,
lib,
...
}: {
2023-03-06 23:48:42 +00:00
boot.loader.systemd-boot.enable = false;
boot.loader.grub = {
enable = true;
2023-12-31 16:35:00 +00:00
devices = ["/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi0-0-0-1"];
};
2023-03-06 23:48:42 +00:00
2023-12-31 16:35:00 +00:00
boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod"];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
2023-03-06 23:48:42 +00:00
boot.initrd.luks.devices."cryptroot" = {
device = "/dev/disk/by-uuid/bf890962-9f43-4c44-a0df-64cabd303662";
2023-03-06 23:48:42 +00:00
};
2023-12-31 16:35:00 +00:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/7eb8989a-6ec4-405f-8810-06486f7621c1";
fsType = "ext4";
};
2023-03-06 23:48:42 +00:00
2023-12-31 16:35:00 +00:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/1fd053f8-725b-418d-aed1-aee71dac2b62";
fsType = "ext4";
};
2023-03-06 23:48:42 +00:00
2023-12-31 16:35:00 +00:00
swapDevices = [
{device = "/dev/disk/by-uuid/2f114633-5b71-46ab-88be-997b27927269";}
];
2023-03-06 23:48:42 +00:00
networking = {
defaultGateway = {
address = "80.244.242.1";
interface = "enp1s0";
};
2023-03-06 23:48:42 +00:00
nameservers = ["95.129.51.51" "80.244.244.244"];
interfaces.enp1s0 = {
useDHCP = false;
2023-03-06 23:48:42 +00:00
ipv4.addresses = [
2023-12-31 16:35:00 +00:00
{
address = "80.244.242.4";
prefixLength = 29;
}
2023-03-06 23:48:42 +00:00
];
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}