init
This commit is contained in:
15
flake.nix
Normal file
15
flake.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user