1
0
Fork 0
nixconf/mounts.nix

10 lines
137 B
Nix
Raw Normal View History

2024-12-23 10:44:58 -07:00
{ pkgs, ... }:
{
# Mount /dev/sda1 to /mnt/slow1
fileSystems."/mnt/slow1" = {
device = "/dev/sda1";
fsType = "ext4";
};
}