41 lines
692 B
Nix
Executable File
41 lines
692 B
Nix
Executable File
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
fileSystems."/mnt/os-images" = {
|
|
device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/os-images";
|
|
fsType = "nfs";
|
|
options = [
|
|
"rw"
|
|
"vers=4"
|
|
];
|
|
};
|
|
|
|
fileSystems."/mnt/docker-shared" = {
|
|
device = "nas:/mnt/ALEXANDRIA/docker-shared";
|
|
fsType = "nfs";
|
|
options = [
|
|
"rw"
|
|
"vers=4"
|
|
];
|
|
};
|
|
|
|
fileSystems."/mnt/media" = {
|
|
device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/media";
|
|
fsType = "nfs";
|
|
options = [
|
|
"rw"
|
|
"vers=4"
|
|
];
|
|
};
|
|
|
|
fileSystems."/mnt/school" = {
|
|
device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/school";
|
|
fsType = "nfs";
|
|
options = [
|
|
"rw"
|
|
"vers=4"
|
|
];
|
|
};
|
|
}
|