nixos-config/config/host-config/spark.nix

29 lines
498 B
Nix

{ config, lib, pkgs, ... }:
{
fudo.slynk.enable = true;
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;
# };
}