diff options
| author | outremonde <outremonde@vivaldi.net> | 2025-06-14 19:34:53 -0400 |
|---|---|---|
| committer | outremonde <outremonde@vivaldi.net> | 2025-06-14 19:34:53 -0400 |
| commit | 803dbbda594c91f7db5f45ca8ca8c8258f5a2964 (patch) | |
| tree | 6af70105f9543b8461427b4a97bc427603623354 /pkgs/custom-neovim/flake.nix | |
| parent | 5fb489649aed5e79197d94a49c3f919c2c8b6ae5 (diff) | |
working on custom neovim project
Former-commit-id: 97e102a0b6a28911fb525fb91fa61347caba1276
Diffstat (limited to 'pkgs/custom-neovim/flake.nix')
| -rw-r--r-- | pkgs/custom-neovim/flake.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/flake.nix b/pkgs/custom-neovim/flake.nix index f0c1cba..e421c25 100644 --- a/pkgs/custom-neovim/flake.nix +++ b/pkgs/custom-neovim/flake.nix @@ -8,17 +8,19 @@ url = "github:numtide/flake-utils"; inputs.systems.follows = "systems"; }; + mnw.url = "github:Gerg-L/mnw"; }; outputs = { nixpkgs, flake-utils, ... - }: + } @ inputs: flake-utils.lib.eachDefaultSystem ( system: let pkgs = nixpkgs.legacyPackages.${system}; in { + packages.default = pkgs.callPackage ./default.nix {inherit inputs;}; devShells.default = pkgs.mkShell { packages = with pkgs; [ fennel |
