nixos/mnt.nix

13 lines
201 B
Nix
Raw Normal View History

2024-06-05 23:04:40 +01:00
{ pkgs, ... }:
{
fileSystems."/mnt/BigNAS" = {
device = "10.27.27.239:/BigNAS";
fsType = "nfs";
};
fileSystems."/mnt/NV1" = {
device = "/dev/nvme1n1p2";
fsType = "btrfs";
};
}