feat(nihilus): add rsync modules and allow brontes to build for aarch64
This commit is contained in:
parent
b5a23db849
commit
56f88cf6d6
4 changed files with 68 additions and 4 deletions
|
@ -1,5 +1,10 @@
|
||||||
# vim:fileencoding=utf-8:foldmethod=marker
|
# vim:fileencoding=utf-8:foldmethod=marker
|
||||||
{ pkgs, username, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
username,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
@ -115,5 +120,8 @@
|
||||||
|
|
||||||
services.rpcbind.enable = true; # necessary for nfs
|
services.rpcbind.enable = true; # necessary for nfs
|
||||||
|
|
||||||
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
|
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,41 @@
|
||||||
{ }:
|
{ pubkeys, ... }:
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./hardware-configuration.nix
|
||||||
|
];
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
services.tailscale = {
|
services.tailscale = {
|
||||||
enable = true;
|
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";
|
||||||
}
|
}
|
||||||
|
|
22
hosts/nihilus/hardware-configuration.nix
Normal file
22
hosts/nihilus/hardware-configuration.nix
Normal 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";
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue