From f156bd830b496e6d6384b75aca70e54ee567bd69 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 7 Apr 2025 13:18:58 +0200 Subject: [PATCH] nixos/orangefs: lib.mapAttrsToList -> lib.attrNames --- nixos/modules/services/network-filesystems/orangefs/server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/network-filesystems/orangefs/server.nix b/nixos/modules/services/network-filesystems/orangefs/server.nix index 99d7b27011c2..6e5a356b97fc 100644 --- a/nixos/modules/services/network-filesystems/orangefs/server.nix +++ b/nixos/modules/services/network-filesystems/orangefs/server.nix @@ -7,7 +7,7 @@ let cfg = config.services.orangefs.server; - aliases = lib.mapAttrsToList (alias: url: alias) cfg.servers; + aliases = lib.attrNames cfg.servers; # Maximum handle number is 2^63 maxHandle = 9223372036854775806;