Files
nixos-config/hosts/darwin/chidi/default.nix
Christoph Schmatzler c19e153657 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-09-02 19:08:28 +00:00

35 lines
554 B
Nix

{
config,
lib,
pkgs,
user,
...
}: {
imports = [
../shared.nix
../../../modules/postgresql.nix
];
networking.hostName = "chidi";
networking.computerName = "Chidi";
services.postgresql = {
enable = true;
};
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
];
}