Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
This commit is contained in:
2025-10-25 15:12:17 +00:00
parent 682c06115f
commit b460a0a534
10 changed files with 49 additions and 62 deletions

27
hosts/chidi/default.nix Normal file
View File

@@ -0,0 +1,27 @@
{
pkgs,
user,
...
}: {
imports = [
../../modules/darwin
];
networking.hostName = "chidi";
networking.computerName = "Chidi";
services.syncthing.settings.folders = {
"Projects/Work" = {
path = "/Users/${user}/Projects/Work";
devices = ["tahani" "chidi"];
};
};
home-manager.users.${user} = {
programs.git.settings.user.email = "christoph@tuist.dev";
};
environment.systemPackages = with pkgs; [
slack
];
}