This commit is contained in:
ashisgreat22 2026-01-14 21:24:19 +01:00
commit 2be8de47fa
87 changed files with 11501 additions and 0 deletions

14
modules/system/common.nix Normal file
View file

@ -0,0 +1,14 @@
{
lib,
config,
...
}:
{
options.myModules.system = {
repoPath = lib.mkOption {
type = lib.types.str;
default = "/home/ashie/nixos";
description = "Path to the main NixOS configuration repository";
};
};
}