nix-infra/config/hosts/gameserver-node-1/configuration.nix

27 lines
431 B
Nix
Raw Normal View History

{ pterodactyl, ... }:
2024-11-06 16:33:10 +01:00
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "gameserver-node-1";
};
#environment.systemPackages = [
# pterodactyl.packages."x86_64-linux".pterodactyl-wings
#];
imports = [
pterodactyl.nixosModules.pterodactyl-wings
];
services.wings = {
enable = false;
configuration = "";
};
2024-11-06 16:33:10 +01:00
system.stateVersion = "24.05";
}