nixos-config/modules/home/nfs.nix

13 lines
177 B
Nix
Raw Normal View History

2024-12-26 12:38:15 +01:00
{ ... }:
{
fileSystems."/mnt" = {
2024-12-26 12:38:15 +01:00
device = "harbour:/mnt/main/main_big";
fsType = "nfs";
options = [
"rw"
# "uid=1000"
# "gid=100"
];
2024-12-26 12:38:15 +01:00
};
}