You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
445 B
19 lines
445 B
{ pkgs, ... }:
|
|
|
|
let
|
|
themeFolder = ".local/share/fcitx5/themes/Theme/";
|
|
in
|
|
{
|
|
i18n.inputMethod = {
|
|
enabled = "fcitx5";
|
|
fcitx5.addons = [ (pkgs.callPackage ./fcitx5-anthy.nix {}) ];
|
|
};
|
|
|
|
home.file = {
|
|
"${themeFolder}theme.conf".text = import ./theme.nix;
|
|
"${themeFolder}arrow.png".source = ./arrow.png;
|
|
"${themeFolder}radio.png".source = ./radio.png;
|
|
".config/fcitx5/conf/classicui.conf".text = "Theme=Theme";
|
|
};
|
|
}
|