agate: added
This commit is contained in:
parent
37c29252a3
commit
6f1ae9dcba
10 changed files with 284 additions and 56 deletions
20
flake.nix
20
flake.nix
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue