Compare commits
3 Commits
61363ea47f
...
2574549023
| Author | SHA1 | Date | |
|---|---|---|---|
| 2574549023 | |||
| db2d33b32c | |||
| 31075a1ca8 |
@ -368,7 +368,9 @@ rec {
|
|||||||
AusweisApp2
|
AusweisApp2
|
||||||
thunderbird # TODO: Email module
|
thunderbird # TODO: Email module
|
||||||
obsidian
|
obsidian
|
||||||
|
# logseq
|
||||||
# anytype # Use flatpak
|
# anytype # Use flatpak
|
||||||
|
zotero
|
||||||
helvum
|
helvum
|
||||||
vlc
|
vlc
|
||||||
audacity
|
audacity
|
||||||
@ -668,7 +670,7 @@ rec {
|
|||||||
|
|
||||||
# "com.google.Chrome"
|
# "com.google.Chrome"
|
||||||
# "md.obsidian.Obsidian" # NOTE: Installed via package
|
# "md.obsidian.Obsidian" # NOTE: Installed via package
|
||||||
"io.anytype.anytype"
|
# "io.anytype.anytype"
|
||||||
];
|
];
|
||||||
|
|
||||||
uninstallUnmanaged = true;
|
uninstallUnmanaged = true;
|
||||||
|
|||||||
@ -49,22 +49,35 @@
|
|||||||
options = ["defaults" "rw" "relatime"];
|
options = ["defaults" "rw" "relatime"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# If the bg option is specified, a timeout or failure causes the mount(8) command
|
||||||
|
# to fork a child which continues to attempt to mount the export.
|
||||||
|
# The parent immediately returns with a zero exit code.
|
||||||
|
# This is known as a "background" mount.
|
||||||
|
|
||||||
|
# If the soft option is specified, then the NFS client fails an NFS request
|
||||||
|
# after retrans retransmissions have been sent, causing the NFS client to return
|
||||||
|
# an error to the calling application.
|
||||||
|
# NB: A so-called "soft" timeout can cause silent data corruption in certain cases.
|
||||||
|
# As such, use the soft option only when client responsiveness is more important than data integrity.
|
||||||
|
# Using NFS over TCP or increasing the value of the retrans option may mitigate
|
||||||
|
# some of the risks of using the soft option.
|
||||||
|
|
||||||
"/home/christoph/Movies" = {
|
"/home/christoph/Movies" = {
|
||||||
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie";
|
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = ["defaults" "rw" "relatime" "_netdev" "bg"];
|
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/home/christoph/Shows" = {
|
"/home/christoph/Shows" = {
|
||||||
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show";
|
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = ["defaults" "rw" "relatime" "_netdev" "bg"];
|
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/home/christoph/Music" = {
|
"/home/christoph/Music" = {
|
||||||
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music";
|
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = ["defaults" "rw" "relatime" "_netdev" "bg"];
|
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user