about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/update_vim_plugins/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'sys/nixpkgs/pkgs/update_vim_plugins/flake.nix')
-rw-r--r--sys/nixpkgs/pkgs/update_vim_plugins/flake.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/sys/nixpkgs/pkgs/update_vim_plugins/flake.nix b/sys/nixpkgs/pkgs/update_vim_plugins/flake.nix
new file mode 100644
index 00000000..736b7804
--- /dev/null
+++ b/sys/nixpkgs/pkgs/update_vim_plugins/flake.nix
@@ -0,0 +1,25 @@
+{
+  description = "update_vim_plugins";
+
+  inputs = {
+    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+
+    flake-utils.url = "github:numtide/flake-utils";
+  };
+
+  outputs = {
+    self,
+    nixpkgs,
+    flake-utils,
+  }: (flake-utils.lib.eachDefaultSystem (system: let
+    pkgs = nixpkgs.legacyPackages.${system};
+  in {
+    devShells.default = pkgs.mkShell {
+      packages = [
+        pkgs.python3
+        pkgs.poetry
+
+      ];
+    };
+  }));
+}