repos / neovimcraft

website that makes it easy to find neovim plugins
git clone https://github.com/neurosnap/neovimcraft.git

commit
ea46ec9
parent
b7c7e85
author
Eric Bower
date
2022-01-25 04:24:31 +0000 UTC
rm nix
2 files changed,  +0, -62
D flake.lock
+0, -42
 1@@ -1,42 +0,0 @@
 2-{
 3-  "nodes": {
 4-    "flake-utils": {
 5-      "locked": {
 6-        "lastModified": 1638122382,
 7-        "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=",
 8-        "owner": "numtide",
 9-        "repo": "flake-utils",
10-        "rev": "74f7e4319258e287b0f9cb95426c9853b282730b",
11-        "type": "github"
12-      },
13-      "original": {
14-        "owner": "numtide",
15-        "repo": "flake-utils",
16-        "type": "github"
17-      }
18-    },
19-    "nixpkgs": {
20-      "locked": {
21-        "lastModified": 1639460010,
22-        "narHash": "sha256-Ff4giKMh7NEIZ9S974kVqOVYqaBVqgt3YxIvVSb0XoU=",
23-        "owner": "nixos",
24-        "repo": "nixpkgs",
25-        "rev": "fc5ac4b35b3d1b7a55e759f852a00af50f8e9fec",
26-        "type": "github"
27-      },
28-      "original": {
29-        "owner": "nixos",
30-        "repo": "nixpkgs",
31-        "type": "github"
32-      }
33-    },
34-    "root": {
35-      "inputs": {
36-        "flake-utils": "flake-utils",
37-        "nixpkgs": "nixpkgs"
38-      }
39-    }
40-  },
41-  "root": "root",
42-  "version": 7
43-}
D flake.nix
+0, -20
 1@@ -1,20 +0,0 @@
 2-{
 3-  description = "development environment for neovimcraft";
 4-  inputs = {
 5-    nixpkgs.url = "github:nixos/nixpkgs";
 6-    flake-utils.url = "github:numtide/flake-utils";
 7-  };
 8-  outputs = { self, nixpkgs, flake-utils }:
 9-    flake-utils.lib.eachDefaultSystem (system:
10-      let
11-        pkgs = nixpkgs.legacyPackages.${system};
12-      in {
13-        devShell = pkgs.mkShell {
14-          buildInputs = [
15-            pkgs.nodejs-14_x
16-            pkgs.yarn
17-            pkgs.google-cloud-sdk
18-          ];
19-        };
20-      });
21-}