summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim
diff options
context:
space:
mode:
authoroutremonde <outremonde@vivaldi.net>2025-06-14 19:34:53 -0400
committeroutremonde <outremonde@vivaldi.net>2025-06-14 19:34:53 -0400
commit803dbbda594c91f7db5f45ca8ca8c8258f5a2964 (patch)
tree6af70105f9543b8461427b4a97bc427603623354 /pkgs/custom-neovim
parent5fb489649aed5e79197d94a49c3f919c2c8b6ae5 (diff)
working on custom neovim project
Former-commit-id: 97e102a0b6a28911fb525fb91fa61347caba1276
Diffstat (limited to 'pkgs/custom-neovim')
-rw-r--r--pkgs/custom-neovim/config/init.lua0
-rw-r--r--pkgs/custom-neovim/flake.lock16
-rw-r--r--pkgs/custom-neovim/flake.nix4
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