mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-25 13:47:01 -04:00
24 lines
368 B
Nix
24 lines
368 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../../../customPackages
|
|
];
|
|
home = {
|
|
packages = with pkgs.cpkg; [
|
|
frog
|
|
];
|
|
};
|
|
programs = {
|
|
plasma = {
|
|
hotkeys = {
|
|
commands = {
|
|
"ocr" = {
|
|
name = "OCR";
|
|
key = "Meta+Shift+T";
|
|
command = "frog -e";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|