diff options
author | Soispha <soispha@vhack.eu> | 2024-01-23 14:55:55 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-23 14:55:55 +0100 |
commit | d7d898d824ece694e71198a45a096f0175058ab1 (patch) | |
tree | 3e46f2865dcfc644f1c02955da3f491bfdda1e06 /sys/nixpkgs/pkgs/update_vim_plugins/flake.nix | |
parent | fix(hm/conf/less): Ensure that less can read the lesskey file (diff) | |
download | nixos-config-d7d898d824ece694e71198a45a096f0175058ab1.zip |
feat(sys/nixpkgs/pkgs): Add update scripts
Diffstat (limited to 'sys/nixpkgs/pkgs/update_vim_plugins/flake.nix')
-rw-r--r-- | sys/nixpkgs/pkgs/update_vim_plugins/flake.nix | 25 |
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 + + ]; + }; + })); +} |