feat: add new host capella for game server hosting

This commit is contained in:
2024-10-21 02:05:53 +05:30
parent 68de1ae948
commit 29520393c8
6 changed files with 156 additions and 33 deletions

View File

@ -146,6 +146,25 @@
];
};
capella = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs username;};
modules = [
./hosts/capella
home-manager.nixosModules.home-manager
{
home-manager.backupFileExtension = "backup";
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {inherit inputs outputs username;};
home-manager.users.${username} = {
imports = [
./hosts/capella/home.nix
];
};
}
];
};
vps = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs username;};
modules = [