Enable all systems

This commit is contained in:
hodasemi 2025-05-22 09:47:20 +02:00
parent 647b07c426
commit 71bebd9b0c

View file

@ -32,7 +32,7 @@
{
deployment = {
targetHost = "188.40.66.217";
targetPort = 22;
targetPort = 23;
targetUser = "root";
};
imports = [
@ -48,29 +48,58 @@
}
];
};
# runner-system =
# {
# name,
# nodes,
# pkgs,
# ...
# }:
# {
# imports = [ ./runner_system.nix ];
# };
# dev-system =
# {
# name,
# nodes,
# pkgs,
# ...
# }:
# {
# imports = [
# ./dev_system.nix
# inputs.sops-nix.nixosModules.sops
# ];
# };
runner-system =
{
name,
nodes,
pkgs,
...
}:
{
deployment = {
targetHost = "157.90.133.118";
targetPort = 22;
targetUser = "root";
};
imports = [
inputs.disko.nixosModules.disko
./runner_system.nix
./setup/disk_conf.nix
./setup/mini_conf.nix
{
networking.hostId = "0a7337de";
boot.loader.grub.zfsSupport = true;
}
];
};
dev-system =
{
name,
nodes,
pkgs,
...
}:
{
deployment = {
targetHost = "88.99.218.181";
targetPort = 22;
targetUser = "root";
};
imports = [
inputs.disko.nixosModules.disko
./dev_system.nix
./setup/disk_conf.nix
./setup/mini_conf.nix
{
networking.hostId = "0a7337de";
boot.loader.grub.zfsSupport = true;
}
];
};
};
};
}