nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (494B)


      1 {pkgs, ...}: {
      2 	i18n.inputMethod = {
      3 		enable = true;
      4 		type = "fcitx5";
      5 		fcitx5 = {
      6 			fcitx5-with-addons = pkgs.kdePackages.fcitx5-with-addons;
      7 			addons = with pkgs; [
      8 				(fcitx5-rime.override {
      9 						rimeDataPkgs = [
     10 							pkgs.rime-ice
     11 						];
     12 					})
     13 			];
     14 			settings.addons.classicui.globalSection.Font = "等距更纱黑体 SC 10";
     15 			waylandFrontend = true;
     16 		};
     17 	};
     18 	xdg.dataFile."fcitx5/rime/default.custom.yaml".source = ./rime.yaml;
     19 	catppuccin.fcitx5.enableRounded = true;
     20 }