Add options for enabling launcher programs

This commit is contained in:
ItsDrike 2024-06-10 20:06:57 +02:00
parent 705ef3451a
commit 739d5019d3
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
5 changed files with 61 additions and 21 deletions

View file

@ -0,0 +1,21 @@
{ lib, ... }: with lib; let
inherit (lib) mkEnableOption mkOption types;
in
{
imports = [
./programs
./git.nix
./wms.nix
];
options.myOptions.home-manager.programs = {
launchers = {
wofi.enable = mkEnableOption "Wofi launcher";
walker.enable = mkOption {
type = types.bool;
default = true;
description = "Enable Walker launcher.";
};
};
};
}