Add kakoune

main
mat ess 2022-07-04 10:46:52 -04:00
parent 2dba542565
commit 49afc6b5f7
2 changed files with 8 additions and 1 deletions

View File

@ -3,11 +3,12 @@
{
# Import config broken out into files
imports = [
./copyApplications.nix
./git.nix
./kakoune.nix
./kitty.nix
./neovim.nix
./shells.nix
./copyApplications.nix
];
home.enableNixpkgsReleaseCheck = true;

6
home/kakoune.nix Normal file
View File

@ -0,0 +1,6 @@
{ ... }: {
programs.kakoune = {
enable = true;
config = { };
};
}