17 lines
327 B
Nix
17 lines
327 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let cfg = config.sydnix.toki-pona;
|
|
in {
|
|
options.sydnix.toki-pona = {
|
|
enable = lib.mkEnableOption "Toki Pona fonts and input methods";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
# nasin-nanpa-ucsur
|
|
nasin-nanpa
|
|
nasin-nanpa-helvetica
|
|
];
|
|
};
|
|
}
|