From 0ecba2a2731fca6786b9da9fa5fd7572b2a427ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 16 Jan 2023 00:04:52 +0100 Subject: [PATCH] Fix eval --- nixos-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-module.nix b/nixos-module.nix index ae6f985..3d61663 100644 --- a/nixos-module.nix +++ b/nixos-module.nix @@ -3,7 +3,7 @@ options.services.buzzrelay = with lib; { enable = mkEnableOption "Enable Fedi.buzz relay"; streams = mkOption { - type = types.listOf str; + type = with types; listOf str; default = [ "https://fedi.buzz/api/v1/streaming/public" ];