2021-04-07 14:03:52 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2021-10-28 09:32:35 -07:00
|
|
|
config = {
|
|
|
|
fudo.slynk.enable = true;
|
2021-08-04 12:37:55 -07:00
|
|
|
|
2021-10-28 09:32:35 -07:00
|
|
|
environment.systemPackages = with pkgs; [ opencv-java ];
|
2021-04-07 14:03:52 -07:00
|
|
|
|
2021-10-28 09:32:35 -07:00
|
|
|
networking = {
|
|
|
|
useDHCP = false;
|
|
|
|
interfaces.intif0.useDHCP = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
i18n.inputMethod = {
|
|
|
|
enabled = "fcitx5";
|
|
|
|
fcitx5.addons = with pkgs; [
|
|
|
|
fcitx5-chinese-addons
|
|
|
|
fcitx5-rime
|
|
|
|
];
|
2021-04-07 14:03:52 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|