diff options
Diffstat (limited to 'pkgs/custom-neovim')
| -rw-r--r-- | pkgs/custom-neovim/config/init.lua | 0 | ||||
| -rw-r--r-- | pkgs/custom-neovim/flake.lock | 16 | ||||
| -rw-r--r-- | pkgs/custom-neovim/flake.nix | 4 |
3 files changed, 19 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/init.lua b/pkgs/custom-neovim/config/init.lua new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/pkgs/custom-neovim/config/init.lua diff --git a/pkgs/custom-neovim/flake.lock b/pkgs/custom-neovim/flake.lock index 4ad3238..73396ff 100644 --- a/pkgs/custom-neovim/flake.lock +++ b/pkgs/custom-neovim/flake.lock @@ -20,6 +20,21 @@ "type": "github" } }, + "mnw": { + "locked": { + "lastModified": 1748710831, + "narHash": "sha256-eZu2yH3Y2eA9DD3naKWy/sTxYS5rPK2hO7vj8tvUCSU=", + "owner": "Gerg-L", + "repo": "mnw", + "rev": "cff958a4e050f8d917a6ff3a5624bc4681c6187d", + "type": "github" + }, + "original": { + "owner": "Gerg-L", + "repo": "mnw", + "type": "github" + } + }, "nixpkgs": { "locked": { "lastModified": 1749401433, @@ -39,6 +54,7 @@ "root": { "inputs": { "flake-utils": "flake-utils", + "mnw": "mnw", "nixpkgs": "nixpkgs", "systems": "systems" } 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 |
