nixos/mnt.nix
2024-06-05 23:04:40 +01:00

13 lines
201 B
Nix

{ pkgs, ... }:
{
fileSystems."/mnt/BigNAS" = {
device = "10.27.27.239:/BigNAS";
fsType = "nfs";
};
fileSystems."/mnt/NV1" = {
device = "/dev/nvme1n1p2";
fsType = "btrfs";
};
}