dots/home/modules/default.nix
2026-03-14 22:39:42 +01:00

24 lines
408 B
Nix

{
lib,
config,
...
}: {
options.myModules = {
games.enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable games module.";
};
};
imports =
[
./daily_apps.nix
./niri.nix
./nvf.nix
./shell
./create-project/create-project.nix
]
++ lib.optionals config.myModules.games.enable [
./games
];
}