From 54c5a22a7f5587b43ee334a0181ed9e4e9bfb050 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 15 Aug 2023 14:56:16 +0200 Subject: [PATCH] Revert "Joshuto: workaround bookmarks" This reverts commit e6fd53ac94d0b5a4ba495f4a0b40c84e02c0da8f. --- modules/hm/joshuto.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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"; } + ]; + }; }; }