WIP test nihilus

This commit is contained in:
Nydragon 2024-10-10 19:40:27 +02:00
parent 9d096472a5
commit 17b9e455ca
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 29 additions and 3 deletions

View file

@ -43,7 +43,9 @@ in
(mkSystem' { (mkSystem' {
hostname = "nihilus"; hostname = "nihilus";
system = "aarch64-linux"; system = "aarch64-linux";
extraModules = [ ]; extraModules = [
inputs.nixos-hardware.nixosModules.raspberry-pi-4
];
}) })
]; ];
} }

View file

@ -1,9 +1,23 @@
{ }: { pubkeys, ... }:
{ {
imports = [
./hardware-configuration.nix
];
modules = { modules = {
services.tailscale = { services.tailscale = {
enable = true; enable = true;
tags = [ "server" ]; tags = [
"server"
"backup"
];
}; };
}; };
services = {
openssh.enable = true;
};
users.users.root.openssh.authorizedKeys.keys = [ pubkeys.ny ];
} }

View file

@ -0,0 +1,10 @@
{ lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}