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 = {
|
deployment = {
|
||||||
targetHost = "188.40.66.217";
|
targetHost = "188.40.66.217";
|
||||||
targetPort = 22;
|
targetPort = 23;
|
||||||
targetUser = "root";
|
targetUser = "root";
|
||||||
};
|
};
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -48,29 +48,58 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
# runner-system =
|
runner-system =
|
||||||
# {
|
{
|
||||||
# name,
|
name,
|
||||||
# nodes,
|
nodes,
|
||||||
# pkgs,
|
pkgs,
|
||||||
# ...
|
...
|
||||||
# }:
|
}:
|
||||||
# {
|
{
|
||||||
# imports = [ ./runner_system.nix ];
|
deployment = {
|
||||||
# };
|
targetHost = "157.90.133.118";
|
||||||
# dev-system =
|
targetPort = 22;
|
||||||
# {
|
targetUser = "root";
|
||||||
# name,
|
};
|
||||||
# nodes,
|
imports = [
|
||||||
# pkgs,
|
inputs.disko.nixosModules.disko
|
||||||
# ...
|
|
||||||
# }:
|
./runner_system.nix
|
||||||
# {
|
|
||||||
# imports = [
|
./setup/disk_conf.nix
|
||||||
# ./dev_system.nix
|
./setup/mini_conf.nix
|
||||||
# inputs.sops-nix.nixosModules.sops
|
{
|
||||||
# ];
|
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