1
0
Fork 0
dotfiles/system/hosts/mediaserver.nix
Daniel Kempkens 2b55805176
All checks were successful
Build / build-amd64-linux (push) Successful in 28s
Build / build-arm64-linux (push) Successful in 57s
all: switch back to deploy-rs
2024-07-23 22:03:30 +02:00

186 lines
4.2 KiB
Nix

args@{ pkgs, config, ... }:
let
secret = import ../../secret/hosts/mediaserver.nix;
ssh-keys = import ../shared/ssh-keys.nix;
in
{
imports = [
../../hardware/hosts/mediaserver.nix
../../agenix/hosts/mediaserver/config.nix
../shared/show-update-changelog.nix
../nixos/ssh.nix
../nixos/eternal-terminal.nix
../nixos/git.nix
../nixos/acme-mediaserver.nix
../nixos/nginx.nix
../nixos/nginx-mediaserver.nix
../nixos/postgresql.nix
(import ../nixos/adguardhome.nix (args // { inherit secret; }))
../nixos/attic.nix
../nixos/ddg.nix
../nixos/tailscale-router.nix
../nixos/tailscale-nodns.nix
../nixos/unbound.nix
../nixos/container.nix
../nixos/mediaserver-setup.nix
(import ../nixos/wireguard-netns.nix (args // { inherit secret; }))
(import ../nixos/wireguard-firewall-mediaserver.nix (args // { inherit secret; }))
../nixos/prowlarr.nix
../nixos/autobrr.nix
../nixos/unpackerr.nix
../nixos/sonarr.nix
../nixos/radarr.nix
../nixos/recyclarr.nix
../nixos/sabnzbd.nix
../nixos/qbittorrent.nix
../nixos/flaresolverr.nix
../nixos/jellyfin.nix
../nixos/aria2.nix
../nixos/convos.nix
../../container/tubearchivist
../../secret/container/additional-media
];
system.stateVersion = "22.11";
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
extra-platforms = [ "aarch64-linux" ];
log-lines = 25;
auto-optimise-store = true;
keep-derivations = true;
keep-outputs = true;
extra-substituters = [
"https://attic.cache.daniel.sx/nifoc-systems?priority=30"
"https://attic.cache.daniel.sx/nifoc-ci?priority=35"
"https://nix-community.cachix.org?priority=50"
"https://cache.garnix.io?priority=60"
"https://cache.lix.systems?priority=70"
];
extra-trusted-public-keys = [
"nifoc-systems:eDDqVP5BFR6/1KvXbF9oUL8JahDdmbrsYtxlQ57LOTU="
"nifoc-ci:JpD9zqVQi8JuS7B8htPDOQZh08rhInMnGFS9RVhiuwk="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
];
trusted-users = [
"root"
"nix-remote-builder"
];
connect-timeout = 5;
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
};
environment.etc."nix/netrc".source = ../../secret/shared/nix-netrc;
boot = {
tmp.cleanOnBoot = true;
binfmt.emulatedSystems = [ "aarch64-linux" ];
};
zramSwap = {
enable = true;
memoryPercent = 25;
};
networking = {
hostName = "mediaserver";
useNetworkd = true;
};
systemd.network = {
enable = true;
networks = {
"10-lan" = {
matchConfig.Name = "ens3";
networkConfig = {
DHCP = "yes";
IPv6AcceptRA = true;
IPv6PrivacyExtensions = true;
};
linkConfig.RequiredForOnline = "routable";
ntp = [
"ptbtime1.ptb.de"
"ptbtime2.ptb.de"
"ptbtime3.ptb.de"
];
};
};
wait-online.extraArgs = [
"--interface=ens3"
];
};
services.journald.extraConfig = ''
SystemMaxUse=1G
MaxRetentionSec=30day
'';
security.sudo.enable = true;
documentation = {
nixos.enable = false;
doc.enable = false;
};
fonts.fontconfig.enable = false;
programs = {
fish.enable = true;
zsh.enable = true;
htop.enable = true;
};
users.users = {
root = {
openssh.authorizedKeys.keys = [ ssh-keys.LAN ];
};
daniel = {
hashedPasswordFile = config.age.secrets.user-daniel-password.path;
isNormalUser = true;
home = "/home/daniel";
description = "Daniel";
extraGroups = [ "wheel" ];
shell = pkgs.fish;
openssh.authorizedKeys.keys = [ ssh-keys.LAN ssh-keys.DanielsPhone ];
};
nix-remote-builder = {
isNormalUser = true;
home = "/home/nix-remote-builder";
description = "Nix Remote Builder";
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [ ssh-keys.NixRemoteBuilder ];
};
};
}