Rebase to flake parts #5

This commit is contained in:
2026-05-08 18:59:40 -03:00
parent 064ba9655a
commit d51f41566c
6 changed files with 207 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ lib, ... }: {
config = {
systems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
};
options.flake.lib = lib.mkOption {
type = lib.types.attrs;
default = { };
description = "`self.lib` attrset.";
};
options.flake.homeManagerModules = lib.mkOption {
type = lib.types.attrs;
default = { };
description = "`self.homeManagerModules` attrset.";
};
}