9 lines
137 B
Nix
9 lines
137 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Mount /dev/sda1 to /mnt/slow1
|
|
fileSystems."/mnt/slow1" = {
|
|
device = "/dev/sda1";
|
|
fsType = "ext4";
|
|
};
|
|
}
|