nixos/modules/desktop/gamingKernel/default.nix

16 lines
315 B
Nix
Raw Normal View History

2024-05-25 01:32:48 +02:00
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.desktop.gamingKernel;
in
{
options.modules.desktop.gamingKernel = {
enable = mkEnableOption ''
Enable gaming kernel with my custom configurations
'';
};
config = mkIf cfg.enable {
virtualisation.waydroid.enable = true;
};
}