feat(Infini-SERVER): mount data srv subvolume

This commit is contained in:
Infinidoge 2022-02-22 22:59:56 -05:00
parent 528a9735a4
commit dff47e54f4
2 changed files with 9 additions and 0 deletions

View file

@ -36,6 +36,8 @@
# /var directories
"/var/log"
"/var/lib/systemd/coredump"
"/srv"
];
files = [

View file

@ -54,6 +54,13 @@ in
neededForBoot = true;
};
"/persist/srv" = {
device = data;
fsType = "btrfs";
options = [ "subvol=root/srv" "ssd" ] ++ btrfsOptions;
neededForBoot = true;
};
# "/persist" = {
# device = "overlay";
# fsType = "overlay";