From 5ebd0217df2ab266a71c9ad4d9776dbaa98080ae Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Mon, 27 Oct 2025 18:59:49 +0100 Subject: [PATCH] Revert "change laptop partitions" This reverts commit a1ff021b102e586a5e98992fe714cc9cd2d9c3a3. --- hosts/nuos/disk-config.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/hosts/nuos/disk-config.nix b/hosts/nuos/disk-config.nix index 4ee4091..a2870b0 100644 --- a/hosts/nuos/disk-config.nix +++ b/hosts/nuos/disk-config.nix @@ -2,7 +2,7 @@ { lib, ... }: { disko.devices = { - disk.main = { + disk.disk1 = { device = lib.mkDefault "/dev/nvme0n1"; type = "disk"; content = { @@ -15,7 +15,7 @@ }; esp = { name = "ESP"; - size = "1G"; + size = "500M"; type = "EF00"; content = { type = "filesystem"; @@ -26,12 +26,11 @@ root = { size = "100%"; content = { - type = "btrfs"; - extraArgs = [ "-f" ]; + type = "filesystem"; + format = "ext4"; mountpoint = "/"; mountOptions = [ - "compress=zstd" - "noatime" # ignore access times + "defaults" ]; }; };