Files
stormwind-nixfiles/drives.nix

50 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-04-07 12:45:31 +02:00
{ ... }:
{
fileSystems = {
2025-11-04 21:53:38 +01:00
#"/mnt/nethergarde/windblows" = {
# device = "10.94.157.2:/mnt/Nethergarde/Windows";
# fsType = "nfs";
#};
2026-01-26 10:29:07 +01:00
"/mnt/nethergarde/leonhome" = {
2026-01-26 23:34:48 +01:00
device = "192.168.0.16:/mnt/Nethergarde/Home";
2026-01-26 10:29:07 +01:00
fsType = "nfs";
};
2025-11-04 21:53:38 +01:00
#"/mnt/nethergarde/bigdata" = {
# device = "10.94.157.2:/mnt/Nethergarde/Bigdata";
# fsType = "nfs";
#};
#"/mnt/nethergarde/nextcloud" = {
# device = "10.94.157.2:/mnt/Nethergarde/New-Nextcloud";
# fsType = "nfs";
#};
2025-04-07 12:45:31 +02:00
"/" = {
device = "/dev/disk/by-uuid/f8ce741e-1a4d-469d-bc6c-0777c1c84423";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/802B-4F26";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
2026-01-26 10:29:07 +01:00
#"/mnt/nethergarde/leonhome" = {
# device = "//10.46.32.2/Leon\\040home\\040share";
# fsType = "cifs";
# options = [
# "credentials=/etc/nixos/secrets/smb-secrets-leon-home"
# "x-systemd.automount"
# "noauto"
# "x-systemd.idle-timeout=60"
# "x-systemd.device-timeout=5s"
# "x-systemd.mount-timeout=5s"
# "uid=1000"
# "gid=100"
# "iocharset=utf8"
# "vers=3.1.1"
# ];
#};
2025-04-07 12:45:31 +02:00
};
}