From f94220dcc3bf0df90403e209cea4a05ffa05f1cc Mon Sep 17 00:00:00 2001 From: Noa Virellia Date: Thu, 25 Dec 2025 13:19:33 +0800 Subject: [PATCH] chore(client): remove internal devshell Signed-off-by: Noa Virellia --- client/.envrc | 1 - client/flake.lock | 61 ----------------------------------------------- client/flake.nix | 28 ---------------------- 3 files changed, 90 deletions(-) delete mode 100644 client/.envrc delete mode 100644 client/flake.lock delete mode 100644 client/flake.nix diff --git a/client/.envrc b/client/.envrc deleted file mode 100644 index ff5954f..0000000 --- a/client/.envrc +++ /dev/null @@ -1 +0,0 @@ -use flake . --impure \ No newline at end of file diff --git a/client/flake.lock b/client/flake.lock deleted file mode 100644 index 4884862..0000000 --- a/client/flake.lock +++ /dev/null @@ -1,61 +0,0 @@ -{ - "nodes": { - "flake-utils": { - "inputs": { - "systems": "systems" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1765779637, - "narHash": "sha256-KJ2wa/BLSrTqDjbfyNx70ov/HdgNBCBBSQP3BIzKnv4=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "1306659b587dc277866c7b69eb97e5f07864d8c4", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs" - } - }, - "systems": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/client/flake.nix b/client/flake.nix deleted file mode 100644 index 88b0a9c..0000000 --- a/client/flake.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - description = "Basic flake for devShell"; - - inputs = { - flake-utils.url = "github:numtide/flake-utils"; - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - }; - - outputs = - { - nixpkgs, - flake-utils, - ... - }: - flake-utils.lib.eachDefaultSystem ( - system: - let - pkgs = nixpkgs.legacyPackages.${system}; - in - { - devShells.default = pkgs.mkShell { - packages = with pkgs; [ - bun - ]; - }; - } - ); -}