flakes/modules/binds.nix
Cilly Leang 939d0cc861
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
system/tailscale: persist tailscale state
2026-05-30 20:37:42 +10:00

9 lines
236 B
Nix

{ config, lib, ...}: {
imports = [ ./options.nix ];
fileSystems = lib.mapAttrs (dest: key: {
depends = [ "/persist" ];
device = "/persist/binds/${key}";
fsType = "none";
options = [ "bind" ];
}) config.me.binds;
}