Evie Litherland-Smith
a4c9090d84
Update hyprland to latest tagged release Move hyprland config inside nix expression so variable substitution can be used Use kanshi to completely control monitor config
28 lines
610 B
Nix
28 lines
610 B
Nix
{ pkgs, anyrun, ... }:
|
|
let anyrunPackages = anyrun.packages.${pkgs.system};
|
|
in {
|
|
imports = [ anyrun.homeManagerModules.default ];
|
|
home.packages = with pkgs; [ rink ];
|
|
programs.anyrun = {
|
|
enable = true;
|
|
config = {
|
|
plugins = with anyrunPackages; [
|
|
applications
|
|
dictionary
|
|
rink
|
|
shell
|
|
stdin
|
|
symbols
|
|
translate
|
|
];
|
|
hideIcons = false;
|
|
ignoreExclusiveZones = false;
|
|
layer = "overlay";
|
|
hidePluginInfo = false;
|
|
closeOnClick = true;
|
|
showResultsImmediately = false;
|
|
maxEntries = null;
|
|
};
|
|
};
|
|
}
|