{ # https://github.com/dtgagnon/nix-config/tree/main/packages/windsurf description = "Windsurf flake"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; }; outputs = { self, nixpkgs, }: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in { packages.${system}.default = pkgs.callPackage ./windsurf.nix { inherit (pkgs) lib stdenv; inherit nixpkgs; }; }; }