diff --git a/system/hardware/filesystem.nix b/system/hardware/filesystem.nix index f6919a9..18a2afe 100644 --- a/system/hardware/filesystem.nix +++ b/system/hardware/filesystem.nix @@ -1,5 +1,4 @@ { ... }: { - boot.tmpOnTmpfs = true; fileSystems = { "/" = { device = "tmpfs"; @@ -19,6 +18,12 @@ options = [ "subvol=/@persist" "compress-force=zstd" ]; neededForBoot = true; }; + "/tmp" = { + device = "/dev/vg0/system"; + fsType = "btrfs"; + options = [ "subvol=/@tmp" "compress-force=zstd" "nosuid" "nodev" ]; + neededForBoot = true; + }; "/mnt/system" = { device = "/dev/vg0/system"; fsType = "btrfs";