1{
2 flake.modules.hjem.core =
3 { config, pkgs, ... }:
4 {
5 packages = [ pkgs.ripgrep ];
6
7 xdg.config.files."ripgrep/config".text = "--smart-case";
8
9 environment.sessionVariables.RIPGREP_CONFIG_PATH = "${config.xdg.config.directory}/ripgrep/config";
10 };
11}