From 3a948d15d73c635617f104bc2ffeecf6b0388322 Mon Sep 17 00:00:00 2001 From: szethh <33635766+szethh@users.noreply.github.com> Date: Fri, 12 Jul 2024 12:15:54 +0200 Subject: [PATCH] system/defaults/dock: support more configuration for persistent-others --- modules/system/defaults/dock.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix index 1e8797f6..b1e5fa6e 100644 --- a/modules/system/defaults/dock.nix +++ b/modules/system/defaults/dock.nix @@ -137,7 +137,7 @@ in { }; system.defaults.dock.persistent-others = mkOption { - type = types.nullOr (types.listOf (types.either types.path types.str)); + type = types.nullOr (types.listOf (types.oneOf [ types.path types.str (types.attrsOf types.anything) ] )); default = null; example = [ "~/Documents" "~/Downloads" ]; description = '' @@ -146,7 +146,17 @@ in { apply = value: if !(isList value) then value - else map (folder: { tile-data = { file-data = { _CFURLString = "file://" + folder; _CFURLStringType = 15; }; }; tile-type = if strings.hasInfix "." (last (splitString "/" folder)) then "file-tile" else "directory-tile"; }) value; + else map (folder: + if isPath folder || isString folder + then + { + tile-data = { + file-data = { _CFURLString = "file://" + folder; _CFURLStringType = 15; }; + }; + tile-type = if strings.hasInfix "." (last (splitString "/" folder)) then "file-tile" else "directory-tile"; + } + else folder # pass through complex objects entirely + ) value; }; system.defaults.dock.show-process-indicators = mkOption {