feat: add neovim conf as input

This commit is contained in:
Nydragon 2024-10-20 10:53:35 +00:00
parent 9d9e8f26d5
commit 51011f200d
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 28 additions and 2 deletions

21
flake.lock generated
View file

@ -314,6 +314,26 @@
"type": "github" "type": "github"
} }
}, },
"neovim": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1729421151,
"narHash": "sha256-4vXBq3gKoRVvCO0LkzqYkurrRbCtiPooAanl1zGu5/o=",
"ref": "refs/heads/main",
"rev": "2b17334f38bf58b6d5f6545014eb0d41368dec32",
"revCount": 68,
"type": "git",
"url": "https://git.ccnlc.eu/Nydragon/neovim.git"
},
"original": {
"type": "git",
"url": "https://git.ccnlc.eu/Nydragon/neovim.git"
}
},
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1728056216, "lastModified": 1728056216,
@ -462,6 +482,7 @@
"home-manager": "home-manager_2", "home-manager": "home-manager_2",
"hyprland": "hyprland", "hyprland": "hyprland",
"hyprlock": "hyprlock", "hyprlock": "hyprlock",
"neovim": "neovim",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nysh": "nysh", "nysh": "nysh",

View file

@ -47,6 +47,11 @@
url = "git+https://git.ccnlc.eu/Nydragon/flakey-rustypaste.git"; url = "git+https://git.ccnlc.eu/Nydragon/flakey-rustypaste.git";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
neovim = {
url = "git+https://git.ccnlc.eu/Nydragon/neovim.git";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = outputs =

View file

@ -1,8 +1,6 @@
{ pkgs, inputs', ... }:
{ {
programs.neovim = { programs.neovim = {
defaultEditor = true; defaultEditor = true;
package = inputs'.neovim.packages.default;
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
enable = true; enable = true;

View file

@ -37,6 +37,8 @@
#xdg-desktop-portal-hyprland = inputs'.hyprland.packages.xdg-desktop-portal-hyprland; #xdg-desktop-portal-hyprland = inputs'.hyprland.packages.xdg-desktop-portal-hyprland;
hyprlock = inputs'.hyprlock.packages.hyprlock; hyprlock = inputs'.hyprlock.packages.hyprlock;
neovim = inputs'.neovim.packages.default;
}) })
inputs.rustypaste.overlays.default inputs.rustypaste.overlays.default
]; ];