aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--flake.lock25
-rw-r--r--flake.nix17
2 files changed, 42 insertions, 0 deletions
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 00000000..dac8dc8e
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,25 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1626644568,
+ "narHash": "sha256-+WxW0u6AJUn/AzIxUuNKtEDxSRcUP0v/iZ/tRXhLGEc=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "d5bd34ebf2c2c2b380b76cb86bc68522bc6af4d7",
+ "type": "github"
+ },
+ "original": {
+ "id": "nixpkgs",
+ "type": "indirect"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 00000000..7661b81a
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,17 @@
+{
+ description = "Quickstart configurations for the Nvim LSP client";
+
+ outputs = { self, nixpkgs }: let
+ pkgs = import nixpkgs { system = "x86_64-linux";};
+ in {
+
+ devShell."x86_64-linux" = pkgs.mkShell {
+
+ buildInputs = [
+ pkgs.stylua
+ pkgs.luaPackages.luacheck
+ ];
+ };
+
+ };
+}