Files
voxtype-toggle-plasmashell/flake.nix
James Eversole cda2a43a88 init
2026-04-29 14:41:59 -05:00

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;
};
};
}