dot_testing/home/git/default.nix

12 lines
161 B
Nix
Raw Permalink Normal View History

2023-12-21 15:26:09 -06:00
{ lib, config, pkgs, home, ... }:
{
# activation managed by nixos config
home.file = {
".config/git/config" = {
source = ./config;
};
};
}