1

initial gaming module

This commit is contained in:
2022-08-07 20:28:05 +02:00
parent d3961395d6
commit 0852d36b62

14
home/modules/gaming.nix Normal file
View File

@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.gaming;
flatpak = config.module.flatpak;
in {
imports = [ ];
options.modules.gaming = {};
config = mkIf cfg.enable {};
}