diff --git a/workstation/configuration.org b/workstation/configuration.org index 8b2abd6..504b97c 100644 --- a/workstation/configuration.org +++ b/workstation/configuration.org @@ -564,7 +564,7 @@ gocryptfs # encrypted filesystem! shhh!!! rmlint # probably my favourite app, amazing dupe finder that integrates well with BTRFS imagemagick # photoshop what?? -ffmpeg # not ffmpreg, the coolest video conversion tool! +ffmpeg_5-full # not ffmpreg, the coolest video conversion tool! torrenttools # create torrent files from the terminal! vcsi # video thumbnails for torrents, can I replace it with ^? #+end_src diff --git a/workstation/fstab.nix b/workstation/fstab.nix index 0c62ec6..882e20f 100644 --- a/workstation/fstab.nix +++ b/workstation/fstab.nix @@ -48,7 +48,8 @@ mount = nfsDisk: { device = "server:/${nfsDisk}"; fsType = "nfs"; - options = [ "x-systemd.automount" "noauto" ]; + options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=600" ]; + # options = [ "x-systemd.automount" "noauto" ]; }; in { "/mnt/pool" = mount "pool" // { };