16 lines
448 B
Nix
16 lines
448 B
Nix
{
|
|
description = "Voxtype Toggle - Plasma 6 applet to toggle voxtype voice typing on/off";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
outputs = { self, nixpkgs, ... }: let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in {
|
|
packages.${system} = {
|
|
plasmaAppletVoxtypeToggle = pkgs.callPackage ./. {};
|
|
default = self.packages.${system}.plasmaAppletVoxtypeToggle;
|
|
};
|
|
};
|
|
}
|