# https://github.com/BatteredBunny/nix-ai-stuff/tree/main { description = "Gemini CLI flake"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; }; outputs = { self, nixpkgs, }: let system = "x86_64-linux"; pkgs = import nixpkgs { system = system; config = { allowUnfree = true; cudaSupport = true; }; }; in { packages.${system}.default = pkgs.callPackage ./default.nix { # inherit (pkgs) lib python3Packages fetchFromGitHub symlinkJoin; # pkgs = pkgs; }; }; }