summaryrefslogtreecommitdiff
path: root/disko.nix
diff options
context:
space:
mode:
authorMathias Magnusson <mathias@magnusson.space>2025-10-19 17:45:49 +0200
committerMathias Magnusson <mathias@magnusson.space>2025-10-19 17:46:34 +0200
commit671e66917b09c56ca9e717b300b874ed71b189ae (patch)
treec81a03308a7fa7828d49fc29d49f76bfec2e86ea /disko.nix
parent421733993cc9f0ce1ec4306cd0659fb5fe655846 (diff)
downloadoden-671e66917b09c56ca9e717b300b874ed71b189ae.tar.gz
nixfmt
Diffstat (limited to 'disko.nix')
-rw-r--r--disko.nix24
1 files changed, 20 insertions, 4 deletions
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"
+ ];
};
};
};