Make configuration more modular

This commit is contained in:
Oliver Davies 2024-03-16 22:12:53 +00:00
parent 2995c006ed
commit 384da2a640
17 changed files with 97 additions and 72 deletions

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
home.packages = with pkgs; [ripgrep];
xdg.configFile."ripgrep/config".text = ''
--follow
--smart-case
'';
}