feat(servers): add baldur, the immortal
This commit is contained in:
parent
79420d9b7c
commit
8c4e9f6641
9 changed files with 107 additions and 1 deletions
20
flake.nix
20
flake.nix
|
@ -105,6 +105,15 @@
|
|||
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.loki;
|
||||
};
|
||||
};
|
||||
|
||||
baldur = {
|
||||
hostname = "baldur";
|
||||
profiles.system = {
|
||||
sshUser = "root";
|
||||
user = "root";
|
||||
path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.baldur;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
|
||||
|
@ -141,6 +150,17 @@
|
|||
];
|
||||
};
|
||||
|
||||
baldur = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
disko.nixosModules.disko
|
||||
agenix.nixosModules.default
|
||||
./hosts/baldur/configuration.nix
|
||||
./modules/servers/general
|
||||
./modules/servers/baldur
|
||||
];
|
||||
};
|
||||
|
||||
nixos = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs;};
|
||||
modules = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue