mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 22:30:25 +01:00
13 lines
407 B
Nix
13 lines
407 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;
|
|
};
|
|
}
|