From 040ddf88ad85699f52c50a68870edae9359f9e0c Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Wed, 22 Apr 2026 18:00:11 -0600 Subject: testing different bootloader for bosco grub is theoretically more space efficient --- machines/bosco/disko.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'machines/bosco/disko.nix') diff --git a/machines/bosco/disko.nix b/machines/bosco/disko.nix index bace733..3b5d899 100644 --- a/machines/bosco/disko.nix +++ b/machines/bosco/disko.nix @@ -13,7 +13,7 @@ label = "boot"; name = "ESP"; # start = "1M"; - size = "512M"; + size = "1G"; type = "EF00"; content = { type = "filesystem"; @@ -34,15 +34,15 @@ subvolumes = { "@root" = { mountpoint = "/"; - mountOptions = [ "subvol=root" "compress-force=zstd:5"]; + mountOptions = [ "subvol=root" "compress-force=zstd:5" "nodatacow"]; }; "@home" = { mountpoint = "/home"; - mountOptions = [ "subvol=home" "compress-force=zstd:5"]; + mountOptions = [ "subvol=home" "compress-force=zstd:5" "nodatacow"]; }; "@nix" = { mountpoint = "/nix"; - mountOptions = [ "subvol=nix" "compress-force=zstd:5"]; + mountOptions = [ "subvol=nix" "compress-force=zstd:5" "nodatacow"]; }; "@persist" = { mountpoint = "/persist"; @@ -50,7 +50,7 @@ }; "@log" = { mountpoint = "/var/log"; - mountOptions = [ "subvol=log" "compress-force=zstd:5"]; + mountOptions = [ "subvol=log" "compress-force=zstd:5" "nodatacow"]; }; "@swap" = { mountpoint = "/swap"; -- cgit v1.2.3