Commit 35e7219c authored by Felix Singer's avatar Felix Singer
Browse files

nixos/weechat: Retype root option to lib.types.path



This option represents a path. So use the corresponding type.

Signed-off-by: default avatarFelix Singer <felixsinger@posteo.net>
parent 0def76f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ in

    root = lib.mkOption {
      description = "Weechat state directory.";
      type = lib.types.str;
      type = lib.types.path;
      default = "/var/lib/weechat";
    };