mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-07-13 16:12:40 +02:00
11 lines
210 B
Nix
11 lines
210 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Squirrel Input Method
|
|
home.file."Library/Rime" = {
|
|
# my custom squirrel data (flypy input method)
|
|
source = "${pkgs.flypy-squirrel}/share/rime-data";
|
|
recursive = true;
|
|
};
|
|
}
|