Files
nixos-config/nix-config/host/waffentrager/services/storage/mount-acme.nix
T

30 lines
849 B
Nix
Raw Normal View History

2026-06-24 00:06:21 +02:00
{
config,
lib,
pkgs,
mkk,
...
}:
{
options.waffentragerService.mount-acme.enable = mkk.lib.mkBoolOpt false "Enable mount-acme";
config =
let
cfg = config.waffentragerService.mount-acme;
in
lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [ sshfs ];
systemd.mounts = [
{
description = "Mount remote acme dir from valkyrie";
what = "acme@valkyrie:/var/lib/acme";
where = "/var/lib/mnt_acme";
type = "fuse.sshfs";
options = "reconnect,gid=${toString config.ids.gids.nginx},_netdev,rw,nosuid,allow_other,default_permissions,follow_symlinks,idmap=user,compression=yes,identityfile=/materus/root/ssh_host_ed25519_key";
wantedBy = [ "multi-user.target" ];
after = [ "wg-quick-wg0.service" ];
}
];
};
}