1
Files
flake-nixinator/home/modules/gaming.nix
2022-08-07 20:28:05 +02:00

14 lines
197 B
Nix

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