{ pkgs, lib, config, ... }: { imports = [ ./hardware-configuration.nix ./tinc.nix ./syncthing.nix #./packages.nix #./home-assistant.nix #./wifi-access-point.nix #./kodi.nix #./mpd.nix ]; networking.hostName = "porani"; # enable initrd ssh configuration.init-ssh = { enable = "enabled"; kernelModules = [ "e1000e" ]; hostECDSAKey = ; }; # programs programs.custom.vim.enable = true; environment.systemPackages = [ pkgs.mosh ]; # wifi setup #system.custom.wifi = { # enable = true; # configurationFile = ; # interfaces = [ "wlp3s0" ]; #}; # nix-shell -p speedtest_cli --run speedtest #configuration.fireqos = { # enable = true; # interface = "wlp3s0"; # input = 2500; # output = 1200; # balance = false; #}; # nix-shell -p speedtest_cli --run speedtest configuration.fireqos = { enable = true; interface = "eth0"; input = 2500; output = 1200; balance = false; }; }