1
0
forked from extern/nix-config

virtualization: Mount home directory

This is convenient, although care should be taken to remove this mount
if you don't want your home directory inside of the virtual machine.
This commit is contained in:
Donovan Glover 2023-07-11 07:43:38 -04:00
parent dc677d170c
commit d9bbb2e267
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -5,8 +5,8 @@
cores = 4; cores = 4;
sharedDirectories = { sharedDirectories = {
testing = { home = {
source = "/home/user/containers/testing"; source = "$HOME";
target = "/mnt"; target = "/mnt";
}; };
}; };