Files
nixos-config/hosts/darwin/chidi/default.nix
2025-09-05 10:03:04 +00:00

28 lines
450 B
Nix

{
pkgs,
user,
...
}: {
imports = [
../shared.nix
];
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.userEmail = "christoph@tuist.dev";
};
environment.systemPackages = with pkgs; [
slack
];
}