OVH is annoying...

This commit is contained in:
Zuckerberg 2022-04-21 01:15:51 -04:00
parent 2cd7f12a75
commit ffad65d902
2 changed files with 10 additions and 8 deletions

View File

@ -5,17 +5,19 @@
./hardware-configuration.nix
];
# un23pkwc3ij7pugl4uiwvdrjjw7xghxbkzppgn3siubqggchbosi6cyd.onion
# cfamr6artx75qvt7ho3rrbsc7mkucmv5aawebwflsfuorusayacffryd.onion
networking.hostName = "ponyo";
firmware.x86_64.enable = true;
efi.enable = true;
boot.loader.grub.efiInstallAsRemovable = true;
bios = {
enable = true;
device = "/dev/sda";
};
luks = {
enable = true;
device.path = "/dev/disk/by-uuid/84eaca59-6b03-47b1-9296-9d4736bcf0e0";
device.path = "/dev/disk/by-uuid/4cc36be4-dbff-4afe-927d-69bf4637bae2";
};
system.autoUpgrade.enable = true;

View File

@ -7,7 +7,7 @@
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.kernelModules = [ "kvm-intel" "nvme" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
@ -16,13 +16,13 @@
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/4CB6-D9F3";
fsType = "vfat";
{ device = "/dev/disk/by-uuid/d3a3777d-1e70-47fa-a274-804dc70ee7fd";
fsType = "ext4";
};
swapDevices = [
{
device = "/dev/disk/by-partuuid/af3c7ed6-9cc6-8241-bc36-8e1aff5c1a34";
device = "/dev/disk/by-partuuid/b14668b8-9026-b041-8b71-f302b6b291bf";
randomEncryption.enable = true;
}
];