0

问题

我一直在研究网络服务器抽象,但使用lib.mapAttrsToList总是返回无限递归错误:

# nixos-rebuild build
building Nix...
error: infinite recursion encountered, at /nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs/lib/modules.nix:59:71
(use ‘--show-trace’ to show detailed location information)
error: infinite recursion encountered, at /nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs/lib/modules.nix:59:71
(use ‘--show-trace’ to show detailed location information)
building the system configuration...
error: infinite recursion encountered, at /nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs/lib/modules.nix:59:71
(use ‘--show-trace’ to show detailed location information)

我已经添加了所有其他版本的代码,没有一个返回infinite recursion我不明白的错误。

所以这是我的代码:

配置.nix

 imports =
    [ # Include the results of the hardware scan.
      ./hardware-configuration.nix
       /home/joachim/Desktop/projects/nixcloud/nixcloud-webservices-abstraction/nextcloud.nix
    ];

  services.nextcloud = {
    enable=true;
    networks = {
      net1 = { name = "foo"; };
      net2 = { name = "bar"; };
    };

nixcloud.nix

{ config, options, lib, pkgs, ... }:

with lib; 

let
  mergeListToAttrs = fold (c: el: recursiveUpdate el c) {};
  cfg = config.services.nextcloud;
in

{
 options = {
    services.nextcloud = {
      networks = mkOption {
        default = {};
#         type = types.loaOf types.submodule;
        options = {
          name = mkOption {
            default = "";
            type = types.str;
          };
        };
      };
      enable = mkOption {
        default = true;
        type=types.bool;
        description = ''
          Whether to enable the cntlm, which start a local proxy.
        '';
      };
    };
  };

# example 1 - works
#   config = { 
#     systemd.services = {
#       bar = {
#           wantedBy      = [ "multi-user.target" ];
#           after         = [ "" ];
#       };
#       foo = {
#           wantedBy      = [ "multi-user.target" ];
#           after         = [ "" ];
#       };
#     };
#   };



# example 2 - works   
#   config = {
#     systemd.services = lib.flip lib.mapAttrs cfg.networks (network: data:
#       {
#           wantedBy      = [ "multi-user.target" ];
#           after         = [ "network.target" ];
#           serviceConfig = {
#             ExecStart = "";
#             ExecReload  = "";
#             Restart = "always";
#             RestartSec = "10s";
#             StartLimitInterval = "1min";
#         };
#       }
#     );
#   };


# example 3 - works       
#   config = {
#     systemd.services = flip mapAttrs' cfg.networks (network: data: nameValuePair
#       ("tinc.${network}")
#       ({
#             wantedBy      = [ "multi-user.target" ];
#             after         = [ "network.target" ];
#             serviceConfig = {
#               ExecStart = "";
#               ExecReload  = "";
#               Restart = "always";
#               RestartSec = "10s";
#               StartLimitInterval = "1min";
#             };
#         })
#       );
#   };

# example 4 - works    
#     config = 
#       mergeListToAttrs (
#         [
#           { systemd.services.a = {
#             wantedBy      = [ "multi-user.target" ];
#             after         = [ "network.target" ];
#             serviceConfig = {
#               ExecStart = "";
#               ExecReload  = "";
#               Restart = "always";
#               RestartSec = "10s";
#               StartLimitInterval = "1min";
#             };
#           };
#           }
#           {
#           systemd.services.b = {
#             wantedBy      = [ "multi-user.target" ];
#             after         = [ "network.target" ];
#             serviceConfig = {
#               ExecStart = "";
#               ExecReload  = "";
#               Restart = "always";
#               RestartSec = "10s";
#               StartLimitInterval = "1min";
#             };
#           };
#           }
#         ]); 

# example 5 - fails!
# XXXXXXXX the failing function XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    config = 
      mergeListToAttrs (
        lib.flip lib.mapAttrsToList cfg.networks (wsName: wsConfig: {
          systemd.services.${wsName} = {
            wantedBy      = [ "multi-user.target" ];
            after         = [ "network.target" ];
            serviceConfig = {
              ExecStart = "";
              ExecReload  = "";
              Restart = "always";
              RestartSec = "10s";
              StartLimitInterval = "1min";
            };
          };
        })
      ); 

}
4

1 回答 1

0

根据 aszlig 的问题是同时example 5 更改和读取配置。解决方案是不这样做,而是使用硬编码的“右手值”example 4或分配 systemd.services = 右手值。

于 2017-02-13T00:38:23.130 回答