From a4f446caf92fd3fd5346576b84a82fc18cf238a3 Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 5 Oct 2023 18:04:04 +0900 Subject: [PATCH] Testomg ext4 instead of btrfs --- nixos/hosts/osaka-vultr-01/disks.nix | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/nixos/hosts/osaka-vultr-01/disks.nix b/nixos/hosts/osaka-vultr-01/disks.nix index c2a4e660..bfa64b93 100644 --- a/nixos/hosts/osaka-vultr-01/disks.nix +++ b/nixos/hosts/osaka-vultr-01/disks.nix @@ -25,25 +25,12 @@ name = "crypted"; extraOpenArgs = [ "--allow-discards" ]; content = { - type = "btrfs"; - extraArgs = [ "-f" ]; - subvolumes = { - "/root" = { - mountpoint = "/"; - mountOptions = [ "compress=zstd" "noatime" ]; - }; # root - "/home" = { - mountpoint = "/home"; - mountOptions = [ "compress=zstd" "noatime" ]; - }; # home - "/nix" = { - mountpoint = "/nix"; - mountOptions = [ "compress=zstd" "noatime" ]; - }; # nix - }; # subvolumes - };# content - }; # content - }; # luks.partitions + type = "filesystem"; + format = "ext4"; + mountpoint = "/"; + }; + }; + }; }; # partitions }; # content }; # disko.devices.disk.vda