Fiona Grzebien
137e263c9b
Flake lock file updates: • Updated input 'pterodactyl': 'git+https://git.nekover.se/fi/pterodactyl.git?ref=refs/heads/main&rev=ae698225308107d243f76dc45d1f6fab7ff95120' (2024-11-06) → 'git+https://git.nekover.se/fi/pterodactyl.git?ref=refs/heads/main&rev=1eff87119f6e48b6b1d1afef468ee4ff1aebe333' (2024-11-06)
27 lines
431 B
Nix
27 lines
431 B
Nix
{ pterodactyl, ... }:
|
|
{
|
|
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 = "";
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|