Files
voxtype-toggle-plasmashell/flake.nix
James Eversole 9ed5dfa74c init
2026-04-29 14:12:54 -05:00

16 lines
449 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} = {
plasma-applet-voxtype-toggle = pkgs.callPackage ./. {};
default = self.packages.${system}.plasma-applet-voxtype-toggle;
};
};
}