ooknet/home/profile/gaming/default.nix

18 lines
238 B
Nix

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