nix-config/modules/home/editor/default.nix
2023-11-13 18:30:36 +01:00

13 lines
229 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;
};
}