feat(servers): add thor.
This commit is contained in:
parent
5e714db69f
commit
5b3cb422e0
10 changed files with 147 additions and 25 deletions
20
flake.nix
20
flake.nix
|
@ -123,6 +123,15 @@
|
|||
path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.bragi;
|
||||
};
|
||||
};
|
||||
|
||||
thor = {
|
||||
hostname = "thor";
|
||||
profiles.system = {
|
||||
sshUser = "root";
|
||||
user = "root";
|
||||
path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.thor;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
|
||||
|
@ -181,6 +190,17 @@
|
|||
];
|
||||
};
|
||||
|
||||
thor = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
disko.nixosModules.disko
|
||||
agenix.nixosModules.default
|
||||
./hosts/thor/configuration.nix
|
||||
./modules/servers/general
|
||||
./modules/servers/thor
|
||||
];
|
||||
};
|
||||
|
||||
nixos = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs;};
|
||||
modules = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue