{ config, pkgs, lib, private, ... }: { imports = [ private.nixosModules.minecraft-servers ./hardware-configuration.nix ./filesystems.nix ]; system.stateVersion = "22.05"; info.loc.home = true; modules = { boot = { grub.enable = true; timeout = 1; }; hardware = { # gpu.nvidia = true; form.server = true; }; services.apcupsd = { enable = false; primary = false; config = { address = "192.168.1.212"; }; }; }; services = { avahi.reflector = true; soft-serve-ng.enable = true; }; services.minecraft-servers.servers.emd-server.autoStart = false; persist = { directories = [ "/home" "/etc/nixos" "/etc/nixos-private" # /var directories "/var/log" "/var/lib/systemd/coredump" "/var/lib/tailscale" "/var/lib/thelounge" "/srv" ]; files = [ "/etc/machine-id" "/root/.local/share/nix/trusted-settings.json" "/root/.ssh/known_hosts" "/root/.ssh/id_ed25519" "/root/.ssh/id_ed25519.pub" "/root/.ssh/immutable_files.txt" ]; }; }