dotfiles/modules/diskstation.nix

17 lines
265 B
Nix
Raw Normal View History

2021-09-14 13:14:20 +02:00
{ config, lib, pkgs, ... }:
{
services.davfs2.enable = true;
services.autofs = {
autoMaster =
let
mapConf = pkgs.writeText "auto" ''
keepass -fstype=favfs,conf=
'';
in
''
/auto file:${mapConf}
'';
};
}