From 8b10e9020fad9980fe35fc16cf2bf6f91262cfa0 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sat, 23 Mar 2024 22:10:53 -0600 Subject: [PATCH] split dir separates webm, av1 more --- workstation/configuration.org | 2 +- workstation/fstab.nix | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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" // { };