Initial commit

This commit is contained in:
2025-02-17 11:05:45 -08:00
commit 16b59d20c0
3 changed files with 118 additions and 0 deletions

23
flake.nix Normal file
View File

@@ -0,0 +1,23 @@
{
description = "Development shell for google-cookie-retrieval";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.python3
pkgs.python3Packages.selenium
pkgs.chromedriver
];
shellHook = ''
echo "Development shell with Python, Selenium, and Chromedriver loaded."
'';
};
};
}