diff --git a/modules/hm/joshuto.nix b/modules/hm/joshuto.nix index 1a6b6b4..a905a14 100644 --- a/modules/hm/joshuto.nix +++ b/modules/hm/joshuto.nix @@ -244,13 +244,13 @@ let tomlGenerate = (pkgs.formats.toml { }).generate; in }; }; - "joshuto/bookmarks.toml".source = tomlGenerate "joshuto-bookmarks.toml" { + "joshuto/bookmarks.toml".text = '' bookmark = [ - { path = "/"; key = "r"; } - { path = "~/"; key = "h"; } - { path = "~/Scaricati"; key = "d"; } - { path = "~/Syncthing"; key = "s"; } - ]; - }; + { path = "/", key = "r" }, + { path = "~/", key = "h" }, + { path = "~/Scaricati", key = "d" }, + { path = "~/Syncthing", key = "s" } + ] + ''; }; }