This commit is contained in:
2025-08-12 19:32:49 +00:00
parent 2a40e49f70
commit fc6bf69f00
22 changed files with 102 additions and 98 deletions

View File

@@ -1,6 +1,7 @@
{
pkgs,
user,
hostMeta,
...
}: {
imports = [
@@ -11,10 +12,8 @@
networking.computerName = "Chidi";
home-manager.users.${user} = {
programs.git.userEmail = "christoph@tuist.dev";
programs.git.userEmail = hostMeta.email;
};
environment.systemPackages = with pkgs; [
slack
];
environment.systemPackages = with pkgs; hostMeta.extraPackages;
}