diff --git a/modules/hm/joshuto.nix b/modules/hm/joshuto.nix index a905a14..1a6b6b4 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".text = '' + "joshuto/bookmarks.toml".source = tomlGenerate "joshuto-bookmarks.toml" { 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"; } + ]; + }; }; }