27 lines
566 B
Nix
27 lines
566 B
Nix
{den, ...}: {
|
|
den.hosts.aarch64-darwin.chidi.users.cschmatzler.aspect = "chidi-cschmatzler";
|
|
|
|
den.aspects.chidi-cschmatzler = {
|
|
includes = [den.aspects.user-darwin-laptop];
|
|
|
|
homeManager = {...}: {
|
|
programs.git.settings.user.email = "christoph@tuist.dev";
|
|
};
|
|
};
|
|
|
|
den.aspects.chidi.includes = [
|
|
(den.lib.perHost {
|
|
includes = [den.aspects.host-darwin-base];
|
|
|
|
darwin = {pkgs, ...}: {
|
|
networking.hostName = "chidi";
|
|
networking.computerName = "chidi";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
slack
|
|
];
|
|
};
|
|
})
|
|
];
|
|
}
|