{ config, pkgs, lib, ... }: { imports = [ ./hardware-configuration.nix ./home-assistant.nix ./kodi.nix ./syncthing.nix ./tinc.nix #./wifi-access-point.nix #./lan.nix ./dms.nix ./borg.nix ]; nixpkgs.config.permittedInsecurePackages = [ "homeassistant-0.114.4" ]; networking.hostName = "pepe"; # fonts # ----- programs.custom.urxvt.fontSize = 12; programs.custom.xterm.fontSize = 12; system.custom.fonts.dpi = 100; # networking # ---------- #system.custom.wifi = { #enable = false; #interfaces = [ "wlp3s0" ]; #configurationFile = ; #}; # just enable lan networking.dhcpcd.allowInterfaces = [ "enp0s25" ]; # nix-shell -p speedtest_cli --run speedtest configuration.fireqos = { enable = true; interface = "wlp3s0"; input = 5000; output = 1200; balance = false; }; services.printing.enable = false; services.smartd.enable = true; }