From 58ceb817bb6ba195d1189160878f318f3bcda0ef Mon Sep 17 00:00:00 2001 From: triethyl Date: Sat, 16 Aug 2025 20:20:21 -0400 Subject: neovim: restarted config --- pkgs/custom-neovim/flake.nix | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 pkgs/custom-neovim/flake.nix (limited to 'pkgs/custom-neovim/flake.nix') diff --git a/pkgs/custom-neovim/flake.nix b/pkgs/custom-neovim/flake.nix deleted file mode 100644 index 6611516..0000000 --- a/pkgs/custom-neovim/flake.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - 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 - ]; - }; - } - ); -} -- cgit v1.2.3