nix/home/helix/default.nix

19 lines
271 B
Nix
Raw Normal View History

2024-08-05 20:37:10 +02:00
{ pkgs, ... }:
2024-07-16 20:21:51 +02:00
{
programs.helix = {
enable = true;
2024-07-16 20:59:37 +02:00
defaultEditor = true;
settings = {
keys.normal = {
space.space = "file_picker";
2024-07-17 23:02:23 +02:00
Z.Z = ":wq";
2024-07-18 14:45:17 +02:00
Z.Q = ":q!";
2024-07-16 20:59:37 +02:00
};
};
2024-07-16 20:21:51 +02:00
};
2024-08-05 20:37:10 +02:00
home.packages = with pkgs; [
nil
];
2024-07-16 20:21:51 +02:00
}