13 lines
224 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|