modules: added wakatime module stub

This commit is contained in:
2025-12-28 17:18:25 +00:00
parent 8ea99dc660
commit dad4788bef
3 changed files with 23 additions and 2 deletions

16
modules/wakatime/home.nix Normal file
View File

@@ -0,0 +1,16 @@
{
inputs,
config,
lib,
pkgs,
fetchFromGitHub,
...
}:
let
cfg = config.modules.wakatime;
in
{
options.modules.wakatime = {
enable = lib.mkEnableOption "wakatime";
};
}