Added lambda as a new machine

This commit is contained in:
Luj 2023-01-08 21:18:42 +01:00
parent 56f1e4948b
commit 8d694cb9a1
Signed by: luj
GPG key ID: 6FC74C847011FD83
2 changed files with 15 additions and 2 deletions

View file

@ -66,6 +66,17 @@
};
};
deploy.nodes.lambda = {
hostname = "lambda.julienmalka.me";
profiles.system = {
sshUser = "root";
sshOpts = [ "-p" "45" ];
remoteBuild = true;
fastConnection = true;
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.newton;
};
};
packages."x86_64-linux" = {
tinystatus = import ./packages/tinystatus { inherit pkgs; };
@ -73,6 +84,7 @@
htpdate = pkgs.callPackage ./packages/htpdate { };
authelia = pkgs.callPackage ./packages/authelia { };
};
packages."aarch64-linux" = {
tinystatus = import ./packages/tinystatus { pkgs = pkgsrpi; };
flaresolverr = pkgsrpi.callPackage ./packages/flaresolverr { };

View file

@ -3,8 +3,9 @@
{
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
./hardware.nix
../../users/julien.nix
../../users/default.nix
];
# Use the systemd-boot EFI boot loader.