mirror of
https://git.lgmrszd.xyz/Lgmrszd/nix-cfg.git
synced 2025-12-14 15:48:21 +01:00
16 lines
383 B
Nix
16 lines
383 B
Nix
{
|
|
systemd.mounts = [
|
|
{
|
|
where = "/mounts/my_data";
|
|
what = "/dev/disk/by-label/My_Data";
|
|
type = "ntfs3";
|
|
options = "defaults,exec,noauto,prealloc,uid=1000,gid=100";
|
|
}
|
|
{
|
|
where = "/mounts/windows";
|
|
what = "/dev/disk/by-label/WinPart";
|
|
type = "ntfs3";
|
|
options = "defaults,exec,noauto,prealloc,uid=1000,gid=100";
|
|
}
|
|
];
|
|
}
|