feat(anyrun): initial anyrun configuration
This commit is contained in:
parent
1d1cc63f5e
commit
7d3d715408
7 changed files with 92 additions and 4 deletions
24
home/modules/desktop/wayland/launcher/anyrun/default.nix
Normal file
24
home/modules/desktop/wayland/launcher/anyrun/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ config, lib, inputs, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.homeModules.desktop.wayland.launcher.anyrun;
|
||||
in
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.anyrun.homeManagerModules.default
|
||||
];
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.anyrun = {
|
||||
enable = true;
|
||||
config = {
|
||||
plugins = with inputs.anyrun.packages.${pkgs.system}; [
|
||||
applications
|
||||
randr
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue