use ssd for vms & nix/store
This commit is contained in:
parent
48c068edd8
commit
e47e16855f
1 changed files with 19 additions and 0 deletions
|
@ -34,6 +34,25 @@
|
|||
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 = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
|
|
Loading…
Reference in a new issue