From 60e00349ee15e82beca9827a193e91a48c329a41 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 17 Jun 2022 12:48:08 +0800 Subject: [PATCH] nixops: new disk in juno --- nixops/juno-hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixops/juno-hardware-configuration.nix b/nixops/juno-hardware-configuration.nix index b933262..7a1a48f 100644 --- a/nixops/juno-hardware-configuration.nix +++ b/nixops/juno-hardware-configuration.nix @@ -5,13 +5,13 @@ [ ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" "nvme" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/62a38d9c-452c-4648-be12-6131e95b8276"; + { device = "/dev/disk/by-uuid/f944873e-3dcf-4682-8793-fe14eab6b1ed"; fsType = "ext4"; };