Initial commit

This commit is contained in:
2025-08-25 15:18:35 -04:00
commit 4d385d0d8b
8 changed files with 90 additions and 0 deletions

18
flake.nix Normal file
View File

@@ -0,0 +1,18 @@
{
description = "yt-share-cleaner - remove tracking from YouTube share URLs";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
web-ext
];
};
};
}