marleyos/systems/x86_64-linux/nyx/mounts.nix

18 lines
302 B
Nix
Raw Normal View History

2025-01-10 17:19:17 -08:00
_: {
systemd = {
mounts = [
{
what = "/dev/disk/by-uuid/fe667d96-a62f-465a-bd91-09b83a622874";
where = "/mnt/data";
type = "ext4";
}
];
automounts = [
{
where = "/mnt/data";
wantedBy = ["multi-user.target"];
}
];
};
}