50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ ... }:
|
|
{
|
|
fileSystems = {
|
|
#"/mnt/nethergarde/windblows" = {
|
|
# device = "10.94.157.2:/mnt/Nethergarde/Windows";
|
|
# fsType = "nfs";
|
|
#};
|
|
"/mnt/nethergarde/leonhome" = {
|
|
device = "10.46.32.2:/mnt/Nethergarde/Home";
|
|
fsType = "nfs";
|
|
};
|
|
#"/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";
|
|
#};
|
|
|
|
"/" = {
|
|
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" ];
|
|
};
|
|
#"/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"
|
|
# ];
|
|
#};
|
|
};
|
|
}
|
|
|