diff --git a/modules/config/devices/config/phobos.nix b/modules/config/devices/config/phobos.nix old mode 100644 new mode 100755 diff --git a/modules/home/default.nix b/modules/home/default.nix index d601e8f..4b20180 100755 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -191,6 +191,7 @@ in polychromatic dolphin espanso + zotero ; }; }; diff --git a/modules/home/gui/apps/browsers/floorp/config/bookmarks/config/tools.nix b/modules/home/gui/apps/browsers/floorp/config/bookmarks/config/tools.nix index 84e5a63..eeb9f88 100755 --- a/modules/home/gui/apps/browsers/floorp/config/bookmarks/config/tools.nix +++ b/modules/home/gui/apps/browsers/floorp/config/bookmarks/config/tools.nix @@ -2,6 +2,24 @@ name = "Tools"; toolbar = false; bookmarks = [ + { + name = "Google Docs"; + url = "https://docs.google.com"; + tags = [ + "google" + "docs" + ]; + keyword = "Docs"; + } + { + name = "Google Sheets"; + url = "https://sheets.google.com"; + tags = [ + "google" + "sheets" + ]; + keyword = "Sheets"; + } { name = "Mullvad"; url = "https://mullvad.net"; diff --git a/modules/home/gui/apps/tools/espanso/default.nix b/modules/home/gui/apps/tools/espanso/default.nix index c9f2e00..d977e37 100755 --- a/modules/home/gui/apps/tools/espanso/default.nix +++ b/modules/home/gui/apps/tools/espanso/default.nix @@ -43,10 +43,34 @@ in trigger = ":exist"; replace = "∃"; } + { + trigger = ":therefore"; + replace = "∴"; + } + { + trigger = ":delta"; + replace = "Δ"; + } { trigger = ":em"; replace = "—"; } + { + trigger = ":ss2"; + replace = "²"; + } + { + trigger = ":ss3"; + replace = "³"; + } + { + trigger = ":glp"; + replace = "GLP-1RA"; + } + { + trigger = ":degree"; + replace = "°"; + } ]; }; global_vars = { diff --git a/templates/haskell/parts/config/pre-commit.nix b/templates/haskell/parts/config/pre-commit.nix index a41ffa6..25aa01f 100755 --- a/templates/haskell/parts/config/pre-commit.nix +++ b/templates/haskell/parts/config/pre-commit.nix @@ -1,7 +1,7 @@ { pre-commit.settings.hooks = { - nixfmt.enable = true; - commitizen.enable = true; + nixfmt-rfc-style.enable = true; + # commitizen.enable = true; statix.enable = true; }; }