nixos-config/config/host-config/spark.nix
2022-07-10 20:46:03 -07:00

27 lines
518 B
Nix

{ config, lib, pkgs, ... }:
{
fudo = {
slynk.enable = true;
wallfly.location = "office";
};
networking = {
interfaces = { intif0.useDHCP = true; };
firewall.enable = false;
};
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [ fcitx5-chinese-addons fcitx5-rime ];
};
# fudo.adguard-dns-proxy = {
# enable = true;
# http.listen-ip = "10.0.0.108";
# dns.listen-port = 1053;
# local-domain-name = "sea.fudo.org";
# verbose = true;
# };
}