This commit is contained in:
Christoph Schmatzler
2025-08-13 08:25:17 +02:00
parent fc6bf69f00
commit 7e219a4f79
10 changed files with 68 additions and 36 deletions

View File

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