Mount spinning disk for minio

This commit is contained in:
Greg Hellings
2024-06-20 17:21:47 -05:00
parent 0dc279bcc3
commit 2847da0ac2
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -5,6 +5,7 @@
./hardware-configuration.nix
./git.nix
./matrix.nix
./minio.nix
];
environment.systemPackages = with pkgs; [
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
xfsprogs
];
fileSystems."/data/1" = {
device = "/dev/disk/by-id/wwn-0x5000c500c48728e9-part1";
fsType = "xfs";
};
}