Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
9 lines
236 B
Nix
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;
|
|
}
|