feat: rime-data for both linux & macOS

This commit is contained in:
Ryan Yin
2023-07-17 13:19:10 +08:00
parent cc6e5ea071
commit 32429619ab
10 changed files with 116 additions and 35 deletions

View File

@@ -6,6 +6,7 @@
./core.nix
./nushell.nix
./rime-squirrel.nix
];
# Home Manager needs a bit of information about you and the

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
# Squirrel Input Method
home.file."Library/Rime" = {
# my custom squirrel data (flypy input method)
source = "${pkgs.flypy-squirrel}/share/rime-data";
recursive = true;
};
}