wip refactor

This commit is contained in:
Leonardo Eugênio 2025-02-20 22:01:03 -03:00
parent 294f1837d5
commit 321cb97502
10 changed files with 113 additions and 79 deletions

9
user/gaming.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, ... }:
let
cfg = config.my.gaming;
in
{
options.my.gaming.enable = lib.mkEnableOption { };
config = lib.mkIf cfg.enable {
};
}