Enable all systems
This commit is contained in:
parent
647b07c426
commit
71bebd9b0c
1 changed files with 53 additions and 24 deletions
77
flake.nix
77
flake.nix
|
@ -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;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue