11 lines
211 B
Nix
11 lines
211 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Bun";
|
|
userEmail = "bun@nixfox.ca";
|
|
extraConfig.safe.directory = "/etc/nixos";
|
|
};
|
|
|
|
home.packages = with pkgs; [ git-crypt ];
|
|
}
|