Use NVME as root

Reviewed-by: Aleix Boné <abonerib@bsc.es>
This commit is contained in:
Rodrigo Arias 2024-10-17 14:39:31 +02:00
parent 717cd5a21e
commit 1b337d31f8

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [
@ -23,11 +23,15 @@
];
# Select the this using the ID to avoid mismatches
boot.loader.grub.device = "/dev/disk/by-id/ata-INTEL_SSDSC2BB240G7_PHDV6462004Y240AGN";
boot.loader.grub.device = "/dev/disk/by-id/nvme-INTEL_SSDPED1D960GAY_PHMB81220017960EGN";
fileSystems."/nvme" = {
fileSystems = {
"/" = lib.mkForce {
device = "/dev/disk/by-label/nixos-nvme";
fsType = "ext4";
device = "/dev/disk/by-label/nvme";
neededForBoot = true;
options = [ "noatime" ];
};
};
networking = {