summaryrefslogtreecommitdiff
path: root/pkgs/old-custom-neovim/flake.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-16 20:20:21 -0400
committertriethyl <triethylammonium@pm.me>2025-08-16 20:20:21 -0400
commit58ceb817bb6ba195d1189160878f318f3bcda0ef (patch)
tree6c17c013c92af8c6e410bb1d4fe3a2557841d0d3 /pkgs/old-custom-neovim/flake.nix
parent94980b0be13a690128992d98a2ed5db3ab592642 (diff)
neovim: restarted config
Diffstat (limited to 'pkgs/old-custom-neovim/flake.nix')
-rw-r--r--pkgs/old-custom-neovim/flake.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/old-custom-neovim/flake.nix b/pkgs/old-custom-neovim/flake.nix
new file mode 100644
index 0000000..6611516
--- /dev/null
+++ b/pkgs/old-custom-neovim/flake.nix
@@ -0,0 +1,31 @@
+{
+ description = "Project flake";
+
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
+ systems.url = "github:nix-systems/default";
+ flake-utils = {
+ 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; [
+ neovide
+ ];
+ };
+ }
+ );
+}