mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 03:49:44 +00:00
12 lines
199 B
Nix
12 lines
199 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
sops.secrets."wakatime" = {
|
|
path = "${config.home.homeDirectory}/.wakatime.cfg";
|
|
};
|
|
|
|
programs.nixvim.plugins.wakatime = {
|
|
enable = true;
|
|
autoLoad = true;
|
|
};
|
|
}
|