feat: stubbed out configs for eve home manager user

This commit is contained in:
Leyla Becker 2025-10-19 17:24:29 -05:00
parent 46890110f8
commit 0c88746da1
8 changed files with 140 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{
config,
lib,
...
}: let
cfg = config.programs.vortex;
in {
options.programs.vortex = {
enable = lib.mkEnableOption "Vortex (Nexus Mods manager)";
};
config = {
assertions = [
{
assertion = !cfg.enable;
message = ''
Vortex module is not yet fully configured.
Please download and install Vortex manually from the Nexus Mods website,
then configure the Wine environment and dependencies as needed.
'';
}
];
};
}