shared virtio fs
parent
dd2d11af32
commit
f20612525e
|
@ -61,6 +61,14 @@ in {
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=swap" ];
|
options = [ "subvol=swap" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"/mnt/vfs_share" = {
|
||||||
|
device = "/dev/mapper/root";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=vfs_share" "compress=zstd" ];
|
||||||
|
neededForBoot = true;
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
|
|
|
@ -61,6 +61,11 @@
|
||||||
allowOther = true;
|
allowOther = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"/mnt/vfs_share/${config.home.homeDirectory}" = {
|
||||||
|
directories = [ "vfs_share" ];
|
||||||
|
allowOther = true;
|
||||||
|
};
|
||||||
|
|
||||||
"/persist/${config.home.homeDirectory}" = {
|
"/persist/${config.home.homeDirectory}" = {
|
||||||
directories = [
|
directories = [
|
||||||
".Slic3r"
|
".Slic3r"
|
||||||
|
@ -131,6 +136,7 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# calibre
|
# calibre
|
||||||
R
|
R
|
||||||
|
virtiofsd
|
||||||
acpi
|
acpi
|
||||||
android-tools
|
android-tools
|
||||||
ansible
|
ansible
|
||||||
|
|
Loading…
Reference in New Issue