21 lines
331 B
Nix
21 lines
331 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
|
|
./games
|
|
];
|
|
}
|