feat(nihilus): add rsync modules and allow brontes to build for aarch64

This commit is contained in:
Nydragon 2024-10-10 19:40:27 +02:00
parent b5a23db849
commit 56f88cf6d6
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
4 changed files with 68 additions and 4 deletions

View file

@ -1,5 +1,10 @@
# vim:fileencoding=utf-8:foldmethod=marker
{ pkgs, username, ... }:
{
pkgs,
username,
config,
...
}:
{
imports = [
./hardware-configuration.nix
@ -115,5 +120,8 @@
services.rpcbind.enable = true; # necessary for nfs
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
system.stateVersion = "24.05";
}

View file

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

View file

@ -1,9 +1,41 @@
{ }:
{ pubkeys, ... }:
{
imports = [
./hardware-configuration.nix
];
modules = {
services.tailscale = {
enable = true;
tags = [ "server" ];
tags = [
"server"
"backup"
];
extraFlags = [ "--accept-dns=false" ]; # Want to disable that since *server* can't access the private dns... for now
};
services = {
rsync-daemon = {
enable = true;
port = 9523;
openFirewall = true;
address = "100.64.0.6";
modules = [
{
name = "image-backup";
comment = "ftp export area";
mode = "write";
}
{
name = "brontes-backup";
comment = "brontes's backup space";
mode = "write";
}
];
};
};
};
boot.initrd.systemd.tpm2.enable = false;
system.stateVersion = "24.11";
}

View file

@ -0,0 +1,22 @@
{ lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
swapDevices = [ ];
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}