aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-30 15:29:06 -0400
committerRosa <rosaontheweb@proton.me>2026-03-30 15:29:06 -0400
commit3811fbf7fcacd8d1d8c294e0285f18c0ad4d52a1 (patch)
tree1a2b53cfb832553bc9f5499aa6b403c67d3c374c /hosts
parent2b5b1da02c4c86563569b8feca7beb91f98c5977 (diff)
forgot the large disk
Diffstat (limited to 'hosts')
-rw-r--r--hosts/canadian-government-system/disks.nix25
1 files changed, 24 insertions, 1 deletions
diff --git a/hosts/canadian-government-system/disks.nix b/hosts/canadian-government-system/disks.nix
index 67b20b8..d64f553 100644
--- a/hosts/canadian-government-system/disks.nix
+++ b/hosts/canadian-government-system/disks.nix
@@ -46,7 +46,7 @@
extraArgs = [
"-f"
"-d raid1"
- "/dev/sda2";
+ "/dev/sda2"
];
subvolumes = {
@@ -78,5 +78,28 @@
device = "/dev/sdb";
type = "disk";
};
+
+ mass-storage = {
+ content = {
+ storage = {
+ content = {
+ extraArgs = [ "-f" ];
+ subvolumes."/data" = {
+ mountOptions = [ "noatime" ];
+ mountpoint = "/mnt/data";
+ };
+
+ type = "btrfs";
+ };
+
+ size = "100%";
+ };
+
+ type = "gpt";
+ };
+
+ device = "/dev/sdc";
+ type = "disk";
+ };
};
}