From 0ca49ba790919576252ccef94d4444e230490983 Mon Sep 17 00:00:00 2001 From: eyjhb Date: Mon, 12 Aug 2024 23:35:46 +0200 Subject: [PATCH] modules.shared: fixed small error when changing namespace of settings --- shared/modules/shared.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/modules/shared.nix b/shared/modules/shared.nix index 990e77e..31e2bfe 100644 --- a/shared/modules/shared.nix +++ b/shared/modules/shared.nix @@ -1,7 +1,7 @@ { lib, ... }: { - options.mine.shared.settings = lib.mkOption { + options.mine.shared = lib.mkOption { type = lib.types.attrsOf lib.types.anything; default = {}; };