Mount spinning disk for minio
This commit is contained in:
@@ -5,6 +5,7 @@
|
|||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./matrix.nix
|
./matrix.nix
|
||||||
|
./minio.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
xfsprogs
|
||||||
|
];
|
||||||
|
|
||||||
|
fileSystems."/data/1" = {
|
||||||
|
device = "/dev/disk/by-id/wwn-0x5000c500c48728e9-part1";
|
||||||
|
fsType = "xfs";
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user