use ssd for vms & nix/store

This commit is contained in:
catvayor 2024-08-03 11:13:53 +02:00
parent 48c068edd8
commit e47e16855f
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -34,6 +34,25 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/.ssd" = {
device = "UUID=b4fc22f8-aecd-4cde-b77d-79825fae65eb";
fsType = "bcachefs";
options = [ "fsck" "fix_errors" ];
neededForBoot = true;
};
fileSystems."/nix/store" = {
device = "/.ssd/nix-store";
options = [ "bind" ];
depends = [ "/.ssd" ];
};
fileSystems."/var/lib/libvirt" = {
device = "/.ssd/libvirt";
options = [ "bind" ];
depends = [ "/.ssd" ];
};
swapDevices = [ ]; swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking