{ pkgs, ... }: { programs.helix = { enable = true; defaultEditor = true; settings = { theme = "catppuccin_macchiato"; editor = { cursorline = true; color-modes = true; true-color = true; cursor-shape.insert = "bar"; indent-guides.render = true; }; }; languages.language = [ { name = "nix"; auto-format = true; formatter.command = "${pkgs.nixfmt}/bin/nixfmt"; } ]; themes.catppuccin_macchiato = { inherits = "catppuccin_macchiato"; "ui.background" = { }; }; }; }