mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
16 lines
352 B
Nix
16 lines
352 B
Nix
|
{ lib, ... }: with lib; let
|
||
|
inherit (lib) mkEnableOption mkOption types;
|
||
|
in
|
||
|
{
|
||
|
options.myOptions.home-manager.programs = {
|
||
|
launchers = {
|
||
|
wofi.enable = mkEnableOption "Wofi launcher";
|
||
|
walker.enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = true;
|
||
|
description = "Enable Walker launcher.";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|