From 7de7ade03296c3735d71ee56f8864c1951e71d3b Mon Sep 17 00:00:00 2001 From: DogLooksGood Date: Mon, 25 Dec 2023 21:20:55 +0800 Subject: [PATCH] remove useless flake config --- dev/flake.lock | 61 -------------------------------------------------- dev/flake.nix | 27 ---------------------- 2 files changed, 88 deletions(-) delete mode 100644 dev/flake.lock delete mode 100644 dev/flake.nix diff --git a/dev/flake.lock b/dev/flake.lock deleted file mode 100644 index a372141a..00000000 --- a/dev/flake.lock +++ /dev/null @@ -1,61 +0,0 @@ -{ - "nodes": { - "flake-utils": { - "inputs": { - "systems": "systems" - }, - "locked": { - "lastModified": 1687709756, - "narHash": "sha256-Y5wKlQSkgEK2weWdOu4J3riRd+kV/VCgHsqLNTTWQ/0=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "dbabf0ca0c0c4bce6ea5eaf65af5cb694d2082c7", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1703034876, - "narHash": "sha256-4bMPFv/bs5g1nEsXQwXlrAGJgjv1Ilr0ejdaTkBwQLs=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "312ab59e8ade69e6083017bd9b98a2919f1fb86a", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-23.05", - "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/dev/flake.nix b/dev/flake.nix deleted file mode 100644 index 39c28430..00000000 --- a/dev/flake.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - description = "Dev scripts for Race Protocol"; - - inputs = { - nixpkgs = { url = "github:NixOS/nixpkgs/nixos-23.05"; }; - flake-utils = { url = "github:numtide/flake-utils"; }; - }; - - outputs = { self, nixpkgs, flake-utils }: - flake-utils.lib.eachDefaultSystem (system: - let - pkgs = import nixpkgs { inherit system; }; - in - { - devShell = pkgs.mkShell { - buildInputs = with pkgs; [ - just - zellij - ]; - }; - } - ); - - nixConfig = { - bash-prompt-prefix = "[flake]"; - }; -}