From 23e95ba2ba7bb4b742135eaa04bec7f8f08ac96d Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 18 Jul 2023 02:17:25 +0000 Subject: [PATCH] modules: fs: symlink.text: allow specifying it multiple times --- modules/fs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fs/default.nix b/modules/fs/default.nix index 3e64b4ff..bc4a4b7a 100644 --- a/modules/fs/default.nix +++ b/modules/fs/default.nix @@ -132,7 +132,7 @@ let description = "fs path to link to"; }; text = mkOption { - type = types.nullOr types.str; + type = types.nullOr types.lines; default = null; description = "create a file in the /nix/store with the provided text and use that as the target"; };