nixos/modules/home/common.nix
2026-01-14 21:24:19 +01:00

14 lines
241 B
Nix

{
lib,
config,
...
}:
{
options.myModules.common = {
repoPath = lib.mkOption {
type = lib.types.str;
default = "/home/ashie/nixos";
description = "Path to the main NixOS configuration repository";
};
};
}