Add Rofimoji support

This commit is contained in:
Filippo Berto 2021-10-30 15:20:09 +02:00
parent 34aefb17a1
commit 8e3264376e
3 changed files with 13 additions and 2 deletions

11
modules/rofimoji.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = [
pkgs.rofimoji
];
xdg.configFile."rofimoji.rc".text = ''
action=copy
skin-tone=light
'';
}