added stuff

This commit is contained in:
vali 2024-04-09 23:11:33 +02:00
commit 236b8c2a6b
907 changed files with 70990 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{lib, ...}: let
inherit (lib) mkEnableOption;
in {
options.modules.profiles = {
workstation.enable = mkEnableOption ''
the Desktop profile
This profile is intended for systems that are workstations: i.e
systems that must contain a suite of applications tailored for
daily usage, mainly for working, studying or programming.
'';
gaming.enable = mkEnableOption ''
the Gaming profile
This profile contains basic platforms and utilities that can be
used for gaming, such as but not limited to Steam and Lutris.
'';
};
}