mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-17 22:49:42 +02:00
12 lines
405 B
Nix
12 lines
405 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;
|
|
# overwrite possible existing data dynamically generated by squirrel
|
|
# https://github.com/nix-community/home-manager/blob/release-23.05/modules/lib/file-type.nix#L101-L111
|
|
force = true;
|
|
};
|
|
}
|