disable containers for now

This commit is contained in:
Vivian 2024-01-01 14:39:53 +01:00
parent 40d88c2169
commit a7e1717462
7 changed files with 29 additions and 35 deletions

View file

@ -22,7 +22,11 @@
snapraid = {
enable = true;
parityFiles =
[ "/mnt/parity1/snapraid.parity" "/mnt/parity2/snapraid.parity-2" ];
[
"/mnt/parity1/snapraid.parity"
"/mnt/parity2/snapraid.parity-2"
"/mnt/parity3/snapraid.parity-3"
];
dataDisks = {
d1 = "/mnt/disk1";
d2 = "/mnt/disk2";

View file

@ -1,6 +1,6 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ mergerfs mergerfs-tools ];
environment.systemPackages = with pkgs; [ mergerfs mergerfs-tools smartmontools ];
fileSystems = {
"/mnt/disk1" = {
fsType = "ext4";
@ -42,6 +42,11 @@
device = "/dev/disk/by-uuid/6c568887-9d2e-45ce-ab85-4c48cca2226a";
};
"/mnt/parity3" = {
fsType = "ext4";
device = "/dev/disk/by-partuuid/5d2d7e3e-3730-4d9b-8759-dc14396f3357";
};
"/mnt/storage" = {
fsType = "fuse.mergerfs";
device = "/mnt/disk*";