WIP test nihilus
This commit is contained in:
parent
9d096472a5
commit
17b9e455ca
3 changed files with 29 additions and 3 deletions
|
@ -43,7 +43,9 @@ in
|
|||
(mkSystem' {
|
||||
hostname = "nihilus";
|
||||
system = "aarch64-linux";
|
||||
extraModules = [ ];
|
||||
extraModules = [
|
||||
inputs.nixos-hardware.nixosModules.raspberry-pi-4
|
||||
];
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,9 +1,23 @@
|
|||
{ }:
|
||||
{ pubkeys, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
modules = {
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
tags = [ "server" ];
|
||||
tags = [
|
||||
"server"
|
||||
"backup"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
openssh.enable = true;
|
||||
};
|
||||
|
||||
users.users.root.openssh.authorizedKeys.keys = [ pubkeys.ny ];
|
||||
|
||||
}
|
||||
|
|
10
hosts/nihilus/hardware-configuration.nix
Normal file
10
hosts/nihilus/hardware-configuration.nix
Normal 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";
|
||||
}
|
Loading…
Add table
Reference in a new issue