nix-config/modules/home/editor/default.nix
2023-11-24 04:08:20 +01:00

17 lines
275 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
nil
marksman
];
programs.helix = {
enable = true;
defaultEditor = true;
settings = import ./helix-config.nix;
themes = import ./helix-theme.nix;
};
programs.emacs = {
enable = true;
};
}