thinkpad-nixos: Git configuration

This commit is contained in:
traxys 2022-10-19 17:12:00 +02:00
parent 579f442bbd
commit 7ed486b21b

View file

@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
bear
chromium
@ -28,6 +32,11 @@
"Chromium-browser"
];
programs.git = {
userName = "Quentin Boyer";
userEmail = config.extraInfo.email;
};
home.sessionVariables = {
OPENSC_SO = "${pkgs.opensc}";
};