1
Files
flake-nixinator/modules/gaming.nix
2022-08-08 17:42:01 +02:00

14 lines
198 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.gaming;
flatpak = config.modules.flatpak;
in {
imports = [ ];
options.modules.gaming = {};
config = mkIf cfg.enable {};
}