From 1539aefdf84f70c3799dbc55ef323c36909e616e Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Mon, 20 May 2024 00:20:46 +0000 Subject: delete nixvim stuff --- nvim/flake.nix | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 nvim/flake.nix (limited to 'nvim') diff --git a/nvim/flake.nix b/nvim/flake.nix deleted file mode 100644 index 0138f8e..0000000 --- a/nvim/flake.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ - description = "nixvim configuration"; - - inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - nixvim.url = "github:nix-community/nixvim"; - flake-parts.url = "github:hercules-ci/flake-parts"; - }; - - outputs = { - nixvim, - flake-parts, - ... - } @ inputs: - flake-parts.lib.mkFlake {inherit inputs;} { - systems = [ - "x86_64-linux" - "aarch64-linux" - "x86_64-darwin" - "aarch64-darwin" - ]; - - perSystem = { - pkgs, - system, - ... - }: let - nixvimLib = nixvim.lib.${system}; - nixvim' = nixvim.legacyPackages.${system}; - nixvimModule = { - inherit pkgs; - module = import ./config; # import the module directly - # You can use `extraSpecialArgs` to pass additional arguments to your module files - extraSpecialArgs = { - # inherit (inputs) foo; - }; - }; - nvim = nixvim'.makeNixvimWithModule nixvimModule; - in { - checks = { - # Run `nix flake check .` to verify that your config is not broken - default = nixvimLib.check.mkTestDerivationFromNixvimModule nixvimModule; - }; - - packages = { - # Lets you run `nix run .` to start nixvim - default = nvim; - }; - }; - }; -} -- cgit v1.2.3