blossom/filesystem: fix persist mount
This commit is contained in:
parent
6323733eac
commit
3775c76edd
1 changed files with 7 additions and 0 deletions
|
|
@ -24,6 +24,13 @@ in
|
|||
"/home/.snapshots" = mkBtrfsMount 262 false;
|
||||
"/root" = mkBtrfsMount 260 false;
|
||||
"/var" = mkBtrfsMount 258 false;
|
||||
"/persist" = {
|
||||
depends = [ "/var" ];
|
||||
device = "/var/persist";
|
||||
fsType = "none";
|
||||
options = [ "bind" ];
|
||||
neededForBoot = true;
|
||||
};
|
||||
|
||||
# "/mnt/nfs" = {
|
||||
# device = "192.168.100.11:/srv/nfs";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue