Files
nixos-config/hosts/darwin/chidi/default.nix
Christoph Schmatzler 3d127819ea up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-23 16:37:54 +00:00

39 lines
636 B
Nix

{
config,
lib,
pkgs,
user,
...
}: {
imports = [
../shared.nix
../../../modules/postgresql.nix
];
networking.hostName = "chidi";
networking.computerName = "Chidi";
nixpkgs.overlays = [
(import ../../../overlays/postgresql-darwin.nix)
];
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
];
}