diff options
author | sils <sils@sils.li> | 2023-02-22 20:12:24 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-02-22 20:12:24 +0100 |
commit | 3d49314d362978f5a4d5db00346f16032f36d7ec (patch) | |
tree | 03dcfc33bb506597068f997cd2f26f3a5b7ebc24 | |
parent | Packages: Add geogebra (diff) | |
download | nix-config-3d49314d362978f5a4d5db00346f16032f36d7ec.tar.gz nix-config-3d49314d362978f5a4d5db00346f16032f36d7ec.zip |
Structure: Swich back to temp-root
-rw-r--r-- | hardware/basesystem.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hardware/basesystem.nix b/hardware/basesystem.nix index 021b9fd..e5bc5ba 100644 --- a/hardware/basesystem.nix +++ b/hardware/basesystem.nix @@ -29,9 +29,9 @@ fileSystems = { "/" = { - device = "/dev/disk/by-label/nixos-root"; - fsType = "btrfs"; - options = ["subvol=nixos-root" "compress-force=zstd"]; + device = "tmpfs"; + fsType = "tmpfs"; + options = ["defaults" "size=2G" "mode=755"]; }; "/nix" = { device = "/dev/disk/by-label/nixos-root"; |