26 lines
465 B
Nix
26 lines
465 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
fudo.slynk.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [ opencv-java ];
|
|
|
|
networking = {
|
|
useDHCP = false;
|
|
interfaces.intif0.useDHCP = true;
|
|
};
|
|
|
|
i18n.inputMethod = {
|
|
enabled = "fcitx5";
|
|
fcitx5.addons = with pkgs; [
|
|
fcitx5-chinese-addons
|
|
fcitx5-rime
|
|
];
|
|
};
|
|
|
|
hardware.bluetooth.enable = true;
|
|
hardware.xpadneo.enable = true;
|
|
};
|
|
}
|