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

20 lines
285 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
2021-11-19 10:26:10 -08:00
fudo.slynk.enable = true;
2021-11-19 10:26:10 -08:00
networking = {
interfaces = {
extif0 = { useDHCP = true; };
};
2021-09-18 22:56:56 -07:00
};
2021-11-19 10:26:10 -08:00
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-chinese-addons
fcitx5-rime
];
};
}