flake update

This commit is contained in:
Grigory Shipunov 2022-06-08 18:47:16 +02:00
parent b8608870c9
commit 3a40a3af28
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
2 changed files with 24 additions and 1 deletions

View file

@ -30,7 +30,7 @@
./modules/emacs.nix ./modules/emacs.nix
./modules/radio.nix ./modules/radio.nix
./modules/tlp.nix ./modules/tlp.nix
./modules/chromium.nix # ./modules/chromium.nix
./modules/wireguard.nix ./modules/wireguard.nix
./modules/binary-caches.nix ./modules/binary-caches.nix
./modules/science.nix ./modules/science.nix

View file

@ -0,0 +1,23 @@
{ pkgs, lib, ... }:
{
services.rpcbind.enable = true;
systemd.mounts = {
type = "nfs";
mountConfig = {
Options = "noatime";
};
what = "10.13.37.5:/";
where = "/mnt/dvb";
};
systemd.automounts = {
wantedBy = [ "multi-user.target" ];
automountConfig= {
TimeoutIdleSec = "600";
};
where = "/mnt/dvb";
};
}