14 lines
241 B
Nix
14 lines
241 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
options.myModules.system = {
|
|
repoPath = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "/home/ashie/nixos";
|
|
description = "Path to the main NixOS configuration repository";
|
|
};
|
|
};
|
|
}
|