From 38202562ecaff0d0bac2d14dba43dc297ae1c768 Mon Sep 17 00:00:00 2001 From: iiogama Date: Sat, 7 Oct 2023 07:48:50 -0700 Subject: [PATCH] Added the davfs2 service for buckwheat to mount remote webdav shares. Commit to test and build. --- hosts/buckwheat/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/buckwheat/configuration.nix b/hosts/buckwheat/configuration.nix index 202c2a7..2229059 100644 --- a/hosts/buckwheat/configuration.nix +++ b/hosts/buckwheat/configuration.nix @@ -39,12 +39,15 @@ in # }; }; users.users.${user.name} = { - extraGroups = [ "libvirtd" "transmission" ]; + extraGroups = [ "libvirtd" "transmission" "davfs2" ]; packages = [ pkgs.rss2email ]; }; services = { + davfs2 = { + enable = true; + }; mullvad-vpn = { enable = true; package = pkgs.mullvad-vpn;