forked from pub-solar/os
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
cquery
|
||
|
kak-lsp
|
||
|
kakoune
|
||
|
kakoune-unwrapped
|
||
|
nixpkgs-fmt
|
||
|
python3Packages.python-language-server
|
||
|
rustup
|
||
|
];
|
||
|
|
||
|
environment.etc = {
|
||
|
"xdg/kak/kakrc".source = ./kakrc;
|
||
|
"xdg/kak/autoload/plugins".source = ./plugins;
|
||
|
"xdg/kak/autoload/lint".source = ./lint;
|
||
|
"xdg/kak/autoload/lsp".source = ./lsp;
|
||
|
"xdg/kak/autoload/default".source = "${pkgs.kakoune-unwrapped}/share/kak/rc";
|
||
|
};
|
||
|
|
||
|
nixpkgs.overlays = let
|
||
|
kak = self: super: {
|
||
|
kakoune = super.kakoune.override {
|
||
|
configure.plugins = with super.kakounePlugins; [
|
||
|
(kak-fzf.override { fzf = super.skim; })
|
||
|
kak-auto-pairs
|
||
|
kak-buffers
|
||
|
kak-powerline
|
||
|
];
|
||
|
};
|
||
|
|
||
|
kakoune-unwrapped = super.kakoune-unwrapped.overrideAttrs (
|
||
|
o: rec {
|
||
|
version = "2019.12.10";
|
||
|
src = super.fetchFromGitHub {
|
||
|
repo = "kakoune";
|
||
|
owner = "mawww";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-TnRQ73bIQGavXNp+wrKtYHgGem+R6JDWt333z2izYzE=";
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
};
|
||
|
in
|
||
|
[ kak ];
|
||
|
}
|