Files
rice-flakes/modules/home/git.nix
2025-05-15 15:16:10 -05:00

13 lines
224 B
Nix

{ config, pkgs, username, ... }:
{
config.hjem.users.username.rum.programs.git = {
enable = true;
settings = {
user = {
name = "poslop";
email = "poslop@archfox.org";
};
};
};
}