Add Nodens, a VM to install NixOS VMs #48

Merged
Gonne merged 3 commits from Gonne/nixConfig:nodens into main 2025-02-20 15:42:12 +00:00
Showing only changes of commit 77bdd979b0 - Show all commits

View file

@ -7,17 +7,17 @@
options = ["size=1G" "mode=755"]; options = ["size=1G" "mode=755"];
}; };
fileSystems."/persist" = { fileSystems."/persist" = {
device = "/dev/disk/by-uuid/e0a160ef-7d46-4705-9152-a6b602898136"; device = "/dev/disk/by-label/nixos";
Outdated
Review

This is out of scope

This is out of scope
Outdated
Review

I don't think so because it is alignment with the naming police introduced here.

I don't think so because it is alignment with the naming police introduced here.
fsType = "btrfs"; fsType = "btrfs";
options = ["subvol=persist"]; options = ["subvol=persist"];
neededForBoot = true; neededForBoot = true;
}; };
fileSystems."/boot" = { fileSystems."/boot" = {
device = "/dev/disk/by-uuid/19da7f3a-69da-4fa8-bb68-b355d7697ba7"; device = "/dev/disk/by-label/boot";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/nix" = { fileSystems."/nix" = {
device = "/dev/disk/by-uuid/e0a160ef-7d46-4705-9152-a6b602898136"; device = "/dev/disk/by-label/nixos";
fsType = "btrfs"; fsType = "btrfs";
options = ["subvol=nix"]; options = ["subvol=nix"];
}; };