13 lines
197 B
Nix
13 lines
197 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./anyrun
|
|
];
|
|
|
|
options.homeModules.desktop.wayland.launcher = {
|
|
anyrun = {
|
|
enable = lib.mkEnableOption "enable anyrun launcher module";
|
|
};
|
|
};
|
|
}
|