diff options
| author | Mathias Magnusson <mathias@magnusson.space> | 2025-10-19 17:45:49 +0200 |
|---|---|---|
| committer | Mathias Magnusson <mathias@magnusson.space> | 2025-10-19 17:46:34 +0200 |
| commit | 671e66917b09c56ca9e717b300b874ed71b189ae (patch) | |
| tree | c81a03308a7fa7828d49fc29d49f76bfec2e86ea /disko.nix | |
| parent | 421733993cc9f0ce1ec4306cd0659fb5fe655846 (diff) | |
| download | oden-671e66917b09c56ca9e717b300b874ed71b189ae.tar.gz | |
nixfmt
Diffstat (limited to 'disko.nix')
| -rw-r--r-- | disko.nix | 24 |
1 files changed, 20 insertions, 4 deletions
@@ -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" + ]; }; }; }; |
