19 lines
312 B
Nix
19 lines
312 B
Nix
{ lib, config, inputs, ... }:
|
|
|
|
let
|
|
cfg = config.snowhawk.repo-clone;
|
|
in
|
|
{
|
|
imports = [
|
|
inputs.repo-clone.homeManagerModule
|
|
];
|
|
|
|
options.snowhawk.repo-clone = {
|
|
enable = lib.mkEnableOption "repo-clone home-manager module";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
repo-clone.enable = true;
|
|
};
|
|
}
|