Files
nixos-config/hosts/darwin/chidi/default.nix
Christoph Schmatzler 7e219a4f79 up
2025-08-13 08:25:17 +02:00

21 lines
290 B
Nix

{
pkgs,
user,
...
}: {
imports = [
../shared.nix
];
networking.hostName = "chidi";
networking.computerName = "Chidi";
home-manager.users.${user} = {
programs.git.userEmail = "christoph@tuist.dev";
};
environment.systemPackages = with pkgs; [
slack
];
}