This commit is contained in:
James Eversole
2026-04-29 13:55:55 -05:00
commit 9ed5dfa74c
6 changed files with 303 additions and 0 deletions

15
flake.nix Normal file
View File

@@ -0,0 +1,15 @@
{
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} = {
plasma-applet-voxtype-toggle = pkgs.callPackage ./. {};
default = self.packages.${system}.plasma-applet-voxtype-toggle;
};
};
}