Files
nixos-config/hosts/darwin/jason/default.nix
2025-08-04 22:45:52 +02:00

24 lines
306 B
Nix

{
config,
pkgs,
user,
...
}:
{
imports = [
../shared.nix
];
networking.hostName = "jason";
networking.computerName = "Jason";
home-manager.users.${user} = {
programs.git.userEmail = "christoph@schmatzler.com";
};
environment.systemPackages = with pkgs; [
slack
];
}