summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-05-20 00:20:46 +0000
committerGitHub <noreply@github.com>2024-05-20 00:20:46 +0000
commit1539aefdf84f70c3799dbc55ef323c36909e616e (patch)
treede028d8af2392d215231dfd43ee1eac9d994cb0c
parent7ee99015f7fb4b5c259989a732a68035701f5176 (diff)
delete nixvim stuff
-rw-r--r--nvim/flake.nix51
1 files changed, 0 insertions, 51 deletions
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;
- };
- };
- };
-}