From e6efa8f2ba7a1b2994060d8bce4aee4f739faab1 Mon Sep 17 00:00:00 2001 From: andrey_varnavskiy Date: Sat, 14 Dec 2024 05:34:08 +0500 Subject: [PATCH] no anyrun --- home-manager/modules/anyrun.nix | 40 --------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 home-manager/modules/anyrun.nix diff --git a/home-manager/modules/anyrun.nix b/home-manager/modules/anyrun.nix deleted file mode 100644 index 10b735e..0000000 --- a/home-manager/modules/anyrun.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ - programs.anyrun = { - enable = true; - config = { - x = { fraction = 0.5; }; - y = { fraction = 0.3; }; - width = { fraction = 0.3; }; - hideIcons = false; - ignoreExclusiveZones = false; - layer = "overlay"; - hidePluginInfo = false; - closeOnClick = false; - showResultsImmediately = false; - maxEntries = null; - - plugins = [ - # An array of all the plugins you want, which either can be paths to the .so files, or their packages - inputs.anyrun.packages.${pkgs.system}.applications - ./some_plugin.so - "${inputs.anyrun.packages.${pkgs.system}.anyrun-with-all-plugins}/lib/kidex" - ]; - }; - - # Inline comments are supported for language injection into - # multi-line strings with Treesitter! (Depends on your editor) - extraCss = /*css */ '' - .some_class { - background: red; - } - ''; - - extraConfigFiles."some-plugin.ron".text = '' - Config( - // for any other plugin - // this file will be put in ~/.config/anyrun/some-plugin.ron - // refer to docs of xdg.configFile for available options - ) - ''; - }; -}