diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 16:46:12 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:50 -0700 |
| commit | 98c216f397f9964cc87991c47ed9ad79b75c9c5f (patch) | |
| tree | 0ef2b77e3fc708fc3ae3fd98f6d4d544d2195fbc /snowfall/modules/home/tools/default.nix | |
| parent | 00d3797991dc45022909707549029657074bb549 (diff) | |
migration: move cloc to new generator
Diffstat (limited to 'snowfall/modules/home/tools/default.nix')
| -rw-r--r-- | snowfall/modules/home/tools/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/snowfall/modules/home/tools/default.nix b/snowfall/modules/home/tools/default.nix new file mode 100644 index 0000000..dc93cda --- /dev/null +++ b/snowfall/modules/home/tools/default.nix @@ -0,0 +1,7 @@ +{ lib, namespace, ... }: + +with lib; with lib.${namespace}; { + imports = [ + (mkSimpleTool "cloc" {}) + ]; +} |