create base module

This commit is contained in:
smayzy
2025-07-08 16:52:58 +02:00
parent aacb703044
commit 40a7288a5a
2 changed files with 19 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.base = mkOption {
};
config = mkIf config.smayzy.base {
};
}
+6
View File
@@ -0,0 +1,6 @@
{ lib, config, pkgs, ... }:
{
imports = [
./base.nix
];
}