mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-12 22:03:09 +02:00
Added lambda as a new machine
This commit is contained in:
parent
56f1e4948b
commit
8d694cb9a1
2 changed files with 15 additions and 2 deletions
12
flake.nix
12
flake.nix
|
@ -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 { };
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue