Cleanup webdavmounting

Maybe the problem is the filesystem I use I will test this on my laptop
soon.
This commit is contained in:
2025-08-31 17:47:38 +02:00
parent 70cea4f7da
commit b781a9f492

View File

@@ -1,31 +1,20 @@
{ inputs, config, ... }: { inputs, ... }:
{ {
imports = [ inputs.sops-nix.nixosModules.sops ]; imports = [ inputs.sops-nix.nixosModules.sops ];
# For web mounting
services.davfs2.enable = true; services.davfs2.enable = true;
# Maybe the failed encryption is due to the btrfs system please remove this in the future
sops = { sops = {
defaultSopsFile = ./../../secrets.yaml; defaultSopsFile = ./../../secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/home/jonas/.config/sops/age/keys.txt"; age.keyFile = "/home/jonas/.config/sops/age/keys.txt";
templates = { secrets = { webdav_secret = { path = "/etc/davfs2/secrets"; }; };
"davtemp" = {
owner = "root";
content = "${config.sops.placeholder.webdav_secret}";
mode = "0600";
path = "/etc/davfs2/secrets";
};
};
secrets = { webdav_secret = { owner = "jonas"; }; };
}; };
# Ensure the mountpoint directory exists
systemd.tmpfiles.rules = [ "d /mnt/webdav 0755 jonas users -" ];
# Just works
systemd.mounts = [{ systemd.mounts = [{
description = "Webdav mount point"; description = "WebDAV mount point";
wants = [ "network-online.target" ]; wants = [ "network-online.target" ];
what = "https://dav.hahn1.one"; what = "https://dav.hahn1.one";
where = "/mnt/webdav"; where = "/mnt/webdav";
@@ -33,10 +22,4 @@
options = "uid=1000,gid=1000,file_mode=0664,dir_mode=2775,_netdev"; options = "uid=1000,gid=1000,file_mode=0664,dir_mode=2775,_netdev";
mountConfig.TimeoutSec = "5s"; mountConfig.TimeoutSec = "5s";
}]; }];
systemd.automounts = [{
where = "/mnt/webdav";
wantedBy = [ "multi-user.target" ];
automountConfig = { TimeoutIdleSec = "20m"; };
}];
} }