1
0
Fork 0
nixconf/mounts.nix
2024-12-23 10:44:58 -07:00

9 lines
137 B
Nix

{ pkgs, ... }:
{
# Mount /dev/sda1 to /mnt/slow1
fileSystems."/mnt/slow1" = {
device = "/dev/sda1";
fsType = "ext4";
};
}