ooknet/home/profile/gaming/default.nix
2024-02-16 01:15:44 +13:00

18 lines
235 B
Nix

{ config, lib, ... }:
let
cfg = config.profiles.gaming;
in
{
imports = [
../../modules
];
config = lib.mkIf cfg.enable {
homeModules.desktop = {
gaming = {
slippi.enable = true;
};
};
};
}