From 671e66917b09c56ca9e717b300b874ed71b189ae Mon Sep 17 00:00:00 2001 From: Mathias Magnusson Date: Sun, 19 Oct 2025 17:45:49 +0200 Subject: nixfmt --- disko.nix | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'disko.nix') diff --git a/disko.nix b/disko.nix index 1f89ffa..cb4a05e 100644 --- a/disko.nix +++ b/disko.nix @@ -25,19 +25,35 @@ subvolumes = { "/root" = { mountpoint = "/"; - mountOptions = [ "subvol=root" "compress=zstd" "noatime" ]; + mountOptions = [ + "subvol=root" + "compress=zstd" + "noatime" + ]; }; "/home" = { mountpoint = "/home"; - mountOptions = [ "subvol=home" "compress=zstd" "noatime" ]; + mountOptions = [ + "subvol=home" + "compress=zstd" + "noatime" + ]; }; "/nix" = { mountpoint = "/nix"; - mountOptions = [ "subvol=nix" "compress=zstd" "noatime" ]; + mountOptions = [ + "subvol=nix" + "compress=zstd" + "noatime" + ]; }; "/nix/persist" = { mountpoint = "/nix/persist"; - mountOptions = [ "subvol=persist" "compress=zstd" "noatime" ]; + mountOptions = [ + "subvol=persist" + "compress=zstd" + "noatime" + ]; }; }; }; -- cgit v1.2.3