agate: added

This commit is contained in:
xinyangli 2025-05-05 12:33:23 +08:00
parent 37c29252a3
commit 6f1ae9dcba
No known key found for this signature in database
10 changed files with 284 additions and 56 deletions

View file

@ -126,6 +126,10 @@
weilite = [
./machines/weilite
];
agate = [
disko.nixosModules.disko
./machines/agate
];
calcite = [
nixos-hardware.nixosModules.asus-zephyrus-ga401
catppuccin.nixosModules.catppuccin
@ -184,7 +188,17 @@
system ? null,
}:
nixpkgs.lib.nixosSystem {
modules = sharedNixosModules ++ nodeNixosModules.${hostname};
modules =
sharedNixosModules
++ nodeNixosModules.${hostname}
++ [
(
{ lib, ... }:
{
networking.hostName = lib.mkDefault hostname;
}
)
];
};
# TODO:
mkColmenaHive =
@ -306,6 +320,10 @@
hostname = "weilite";
};
agate = mkNixos {
hostname = "agate";
};
baryte = mkNixos {
hostname = "baryte";
};