20 lines
287 B
Nix
20 lines
287 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fudo.slynk.enable = true;
|
|
|
|
networking = {
|
|
interfaces = {
|
|
extif0 = { useDHCP = true; };
|
|
};
|
|
};
|
|
|
|
i18n.inputMethod = {
|
|
enabled = "fcitx5";
|
|
fcitx5.addons = with pkgs; [
|
|
fcitx5-chinese-addons
|
|
fcitx5-rime
|
|
];
|
|
};
|
|
}
|