mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 03:43:55 -05:00
13 lines
219 B
Nix
13 lines
219 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {guiApps.webCord.enable = lib.mkEnableOption "Enables WebCord.";};
|
|
|
|
config = lib.mkIf config.guiApps.webCord.enable {
|
|
home.packages = with pkgs; [webcord];
|
|
};
|
|
}
|