13 lines
197 B
Nix
13 lines
197 B
Nix
{pkgs, ...}: {
|
|
|
|
imports = [
|
|
../modules/home-manager/browser.nix
|
|
../modules/home-manager/code.nix
|
|
];
|
|
|
|
programs.git = {
|
|
userName = "Remy Moll";
|
|
userEmail = "me@moll.re";
|
|
};
|
|
}
|