mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +00:00
18 lines
400 B
Nix
18 lines
400 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.";
|
|
};
|
|
};
|
|
|
|
spotify.enable = mkEnableOption "Spotify";
|
|
};
|
|
}
|