buildbot/nix-eval Build done.
buildbot/nix-build gitea:greg/nixos#checks.x86_64-linux.nixos-exodus Build done.
buildbot/nix-build gitea:greg/nixos#checks.x86_64-linux.nixos-isaiah Build done.
buildbot/nix-build gitea:greg/nixos#checks.x86_64-linux.nixos-linode Build done.
buildbot/nix-build gitea:greg/nixos#checks.x86_64-linux.nixos-zeke Build done.
buildbot/nix-build gitea:greg/nixos#checks.x86_64-linux.nixos-jeremiah Build done.
buildbot/nix-build gitea:greg/nixos#checks.aarch64-linux.nixos-nixos Build done.
buildbot/nix-build gitea:greg/nixos#checks.x86_64-linux.nixos-gitlab Build done.
buildbot/nix-build Build done.
Make hosts read from directories, to limit manual changes Rename vm-gitlab -> gitlab A few reformatting and lint changes due to altered files Create builder targets for Darwin builders
46 lines
959 B
Nix
46 lines
959 B
Nix
{
|
|
metadata,
|
|
nixpkgs,
|
|
top,
|
|
}:
|
|
let
|
|
user =
|
|
host: username:
|
|
let
|
|
inherit (metadata.hosts.${host}) system;
|
|
pkgs = nixpkgs.${system};
|
|
in
|
|
top.hmunstable.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
modules = [
|
|
../modules/nix-conf.nix
|
|
./home.nix
|
|
];
|
|
extraSpecialArgs = {
|
|
inherit
|
|
top
|
|
host
|
|
username
|
|
metadata
|
|
;
|
|
nixvim = top.nixvimunstable;
|
|
gui = false;
|
|
gnome = false;
|
|
};
|
|
};
|
|
greg = host: (user host "greg");
|
|
in
|
|
{
|
|
"MacBook-Pro.local" = user "ivr" "gregory.hellings";
|
|
"MacBook-Prolocal.local" = user "ivr" "gregory.hellings";
|
|
"MacBook-Pro.thehellings.lan" = user "ivr" "gregory.hellings";
|
|
genesis = greg "genesis";
|
|
exodus = greg "exodus";
|
|
zeke = greg "zeke";
|
|
isaiah = greg "isaiah";
|
|
jeremiah = greg "jeremiah";
|
|
linode = greg "linode";
|
|
hosea = greg "hosea";
|
|
gitlab = greg "gitlab";
|
|
}
|