Files
nixos-cluster/modules/mnt-clusterstore.nix
2023-11-21 22:38:05 +00:00

24 lines
414 B
Nix

{
lib,
pkgs,
config,
inputs,
...
}: {
services.openiscsi = {
enable = true;
name = "iqn.2013-03.com.wdc:mycloudpr2100:clusterstore";
enableAutoLoginOut = true;
discoverPortal = "192.168.1.109";
package = pkgs.openiscsi;
};
fileSystems."/mnt/ClusterStore" = {
device = "/dev/sda1";
fsType = "ext4";
# options = ["uid=0,gid=1000"];
options = ["_netdev"];
};
}