aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 04799d052221614461d5767671a816ecb282612e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
  description = "My Completely Inelegant Neovim Flake";

  inputs = {
    nixpkgs.url = "nixpkgs/nixos-unstable";
    vim-angry-reviewer = {
      url = "github:anufrievroman/vim-angry-reviewer";
      flake = false;
    };
  };

  outputs = { self, nixpkgs, ... }@inputs:
  let
    system = "x86_64-linux";
    pkgs = import nixpkgs {
      inherit system;
      overlays = [
        (self: super: {
          vale = super.callPackage ./nix/vale.nix { };
          flake8-isort = super.python3Packages.callPackage ./nix/flake8-isort.nix { };
          mypython = super.python3Packages.callPackage ./nix/mypython.nix { };
        })
      ];
    };
  in rec {
    # For nix < 2.7
    # For nix >= 2.7 they should grab automatically from:
    #     apps.${system}.default
    #     packages.${system}.default
    defaultApp.${system} = apps.${system}.default;
    defaultPackage.${system} = packages.${system}.default;

    apps.${system} = rec {
      nvim = {
        type = "app";
        program = "${packages.${system}.default}/bin/nvim";
      };
      default = nvim;
    };
    # Read the init.lua from the repo.
    initfile = pkgs.lib.readFile ./init.lua;
    packages.${system} = with pkgs; let
      # Vim angry reviewer wasn't packaged when I build this. Easy enough to
      # package myself.
      vim-angry-reviewer = vimUtils.buildVimPluginFrom2Nix {
        pname = "vim-angry-reviewer";
        version = "HEAD";
        src = inputs.vim-angry-reviewer;
      };
      # My custom neovim with my init file and all the plugins I use.
      myneovim = (neovim.override {
        configure = {
          customRC = ''
            lua << EOF
            ${initfile}
            EOF
          '';
          packages.myPlugins = with vimPlugins; {
            start = [
              # Colorscheme
              nord-nvim

              # Syntax coloring
              nvim-ts-rainbow
              (nvim-treesitter.withPlugins (plugins: tree-sitter.allGrammars))

              # Autocompletes
              nvim-lspconfig
              nvim-cmp
              cmp-nvim-lsp

              # File navigation
              lf-vim
              vim-floaterm

              # The rest
              vim-commentary
              vim-surround
              vim-repeat
              fzf-vim
              vim-argwrap
              vim-fugitive
              indent-blankline-nvim
              camelcasemotion
              hop-nvim
              ale
              goyo-vim
              vim-oscyank
              ack-vim
              vim-angry-reviewer
            ];
          };
        };
      });
    in
      rec {
      default = neovimCH;
      neovimCH = symlinkJoin {
        name = "neovim";
        paths = [ myneovim ];
        buildInputs = [ pkgs.makeWrapper ];
        postBuild = with pkgs; ''
          rm $out/bin/nvim
          BINPATH=${lib.makeBinPath [
            gcc
            nodejs
            mypython
            pyright
            vale
            tree-sitter
            nodePackages.bash-language-server
            shellcheck
            hadolint
          ]}
          makeWrapper ${myneovim}/bin/nvim $out/bin/nvim --prefix PATH : $BINPATH
        '';
      };
    };
  };
}