diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2026-04-22 18:00:11 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2026-04-22 18:00:11 -0600 |
| commit | 040ddf88ad85699f52c50a68870edae9359f9e0c (patch) | |
| tree | 5f6688297fc10ce74d05ac47d147a7859c4e70f5 /machines/bosco/disko.nix | |
| parent | d8cc6117ab9b9597ccb017cbe56e644dc6493b18 (diff) | |
testing different bootloader for bosco
grub is theoretically more space efficient
Diffstat (limited to 'machines/bosco/disko.nix')
| -rw-r--r-- | machines/bosco/disko.nix | 10 |
1 files changed, 5 insertions, 5 deletions
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"; |
