nix-configs/nixos-configurations/orangepihole.nix

214 lines
4.9 KiB
Nix
Raw Normal View History

2024-09-20 21:16:48 -04:00
{
config,
pkgs,
modulesPath,
ezModules,
lib,
inputs,
...
}:
2024-04-05 22:04:41 -04:00
{
2024-09-05 19:08:29 -04:00
imports = [
# Include the results of the hardware scan.
2024-09-20 21:16:48 -04:00
"${modulesPath}/installer/scan/not-detected.nix"
inputs.impermanence.nixosModules.impermanence
ezModules.networkd-base
2024-05-11 12:51:25 -04:00
];
2024-04-05 22:04:41 -04:00
2024-09-20 21:16:48 -04:00
boot = {
loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
timeout = 1;
};
tmp.cleanOnBoot = true;
};
fileSystems = {
"/" = {
device = "none";
fsType = "tmpfs";
options = [
"defaults"
"mode=755"
];
};
"/persist" = {
device = "/dev/disk/by-uuid/6df53c4f-42b6-478b-8be4-f7887ad18b5b";
fsType = "btrfs";
neededForBoot = true;
options = [
"compress=lzo"
"autodefrag"
"defaults"
"subvol=@nixos/root"
];
};
"/boot" = {
device = "/dev/disk/by-uuid/a4d76da9-b8eb-4615-9d64-a36e1383da80";
fsType = "ext4";
options = [ "defaults" ];
};
"/nix" = {
device = "/dev/disk/by-uuid/6df53c4f-42b6-478b-8be4-f7887ad18b5b";
fsType = "btrfs";
options = [
"compress=lzo"
"autodefrag"
"defaults"
"subvol=@nixos/nix"
];
};
};
2024-04-05 22:04:41 -04:00
networking = {
hostName = "orangepihole"; # Define your hostname.
2024-09-20 21:16:48 -04:00
firewall = {
allowedUDPPorts = [
53
67
68
];
allowedTCPPorts = [ 53 ];
};
useDHCP = lib.mkDefault true;
2024-04-05 22:04:41 -04:00
};
systemd.network.networks."40-end0" = {
matchConfig.Name = "end0";
2024-09-05 19:08:29 -04:00
address = [
"10.42.69.2/24"
"fd72:3dd5:21ae:3c97::2/64"
];
dns = [
"10.42.69.2"
"fd72:3dd5:21ae:3c97::2"
];
2024-04-05 22:04:41 -04:00
domains = [ "icanttype.org" ];
gateway = [ "10.42.69.1" ];
networkConfig.DHCPServer = true;
dhcpServerConfig = {
PoolOffset = 150;
EmitDNS = true;
DNS = "10.42.69.2";
EmitRouter = true;
Router = "10.42.69.1";
2024-09-05 19:08:29 -04:00
SendOption = [
"15:string:icanttype.org"
"119:string:icanttype.org"
];
2024-04-05 22:04:41 -04:00
};
networkConfig.IPv6SendRA = true;
2024-09-20 21:16:48 -04:00
ipv6SendRAConfig = {
RouterLifetimeSec = 0;
EmitDNS = false;
};
2024-09-05 19:08:29 -04:00
ipv6Prefixes = [ { ipv6PrefixConfig.Prefix = "fd72:3dd5:21ae:3c97::/64"; } ];
2024-04-05 22:04:41 -04:00
};
zramSwap.enable = true;
2024-09-05 19:08:29 -04:00
swapDevices = [
{
device = "/persist/swapfile";
size = 1024;
}
];
2024-05-11 13:23:02 -04:00
services = {
unbound = {
enable = true;
2024-05-16 09:39:14 -04:00
localControlSocketPath = "/var/lib/unbound/control.sock";
2024-05-11 13:23:02 -04:00
settings = {
server = {
2024-07-15 15:34:07 -04:00
do-ip6 = "no";
2024-05-11 13:23:02 -04:00
qname-minimisation = "yes";
interface = [ "end0" ];
2024-09-05 19:08:29 -04:00
access-control = [
"10.0.0.0/8 allow"
"fc::/7 allow"
];
2024-05-11 13:23:02 -04:00
};
2024-09-05 19:08:29 -04:00
include = [
"/etc/unbound/ads.conf"
2024-09-20 21:16:48 -04:00
"${../configs/unbound-local.conf}"
2024-09-05 19:08:29 -04:00
];
2024-04-05 22:04:41 -04:00
};
};
2024-05-11 13:23:02 -04:00
journald.storage = "volatile";
2024-04-05 22:04:41 -04:00
};
2024-05-11 12:51:25 -04:00
2024-04-05 22:04:41 -04:00
systemd = {
services.adblock = {
startAt = "daily";
2024-05-06 19:13:12 -04:00
postStop = "systemctl try-reload-or-restart unbound";
2024-09-05 19:08:29 -04:00
path = with pkgs; [
gawk
wget
];
2024-04-05 22:04:41 -04:00
script = ''
2024-05-11 12:53:43 -04:00
wget -nv -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/tif.blacklist.conf > /tmp/new.conf
2024-08-16 06:51:37 -04:00
echo 'local-zone: "tiktok.com." always_nxdomain' >> /tmp/new.conf
2024-05-11 12:53:43 -04:00
echo 'local-zone: "iogames.space." always_nxdomain' >> /tmp/new.conf
echo 'local-zone: "taming.io." always_nxdomain' >> /tmp/new.conf
awk '!seen[$0]++' /tmp/new.conf > /etc/unbound/ads.conf
rm /tmp/new.conf
2024-04-05 22:04:41 -04:00
'';
};
};
2024-05-11 11:44:00 -04:00
environment = {
systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
];
persistence."/persist" = {
hideMounts = true;
2024-09-05 19:08:29 -04:00
directories = [
"/var/lib/nixos"
"/var/lib/systemd"
"/tmp"
];
2024-05-11 11:44:00 -04:00
files = [
"/etc/machine-id"
"/etc/adjtime"
"/etc/ssh/ssh_host_rsa_key"
"/etc/ssh/ssh_host_rsa_key.pub"
"/etc/ssh/ssh_host_ed25519_key"
"/etc/ssh/ssh_host_ed25519_key.pub"
2024-05-11 12:53:43 -04:00
"/etc/unbound/ads.conf"
2024-05-11 11:44:00 -04:00
];
};
};
2024-04-05 22:04:41 -04:00
system.stateVersion = "23.11"; # Did you read the comment?
2024-05-11 12:51:25 -04:00
sops.secrets."nixremote/sshkey" = { };
2024-09-20 21:16:48 -04:00
nix = {
distributedBuilds = true;
settings.max-jobs = 0;
buildMachines = [
{
hostName = "zeus";
systems = [
"x86_64-linux"
"aarch64-linux"
];
protocol = "ssh-ng";
sshKey = config.sops.secrets."nixremote/sshkey".path;
sshUser = "nixremote";
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
];
}
];
};
2024-05-11 11:44:00 -04:00
programs.ssh.extraConfig = ''
Host zeus
User nixremote
2024-05-11 13:04:32 -04:00
StrictHostKeyChecking accept-new
2024-05-11 11:44:00 -04:00
IdentitiesOnly yes
IdentityFile ${config.sops.secrets."nixremote/sshkey".path}
'';
2024-09-20 21:16:48 -04:00
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
2024-04-05 22:04:41 -04:00
}