summary refs log tree commit diff stats
path: root/user/modules/git.nix
blob: a43ccadfd7d71202fd83905c0be5e69555646842 (plain)
1
2
3
4
5
6
7
8
{ config, pkgs, ... }:

{
  xdg.configFile.git = {
    recursive = true;
    source = ../git/.config/git;
  };
}