Files
LillyOS/modules/gaming/anime-game-launchers.nix
2026-01-05 04:04:42 +01:00

13 lines
257 B
Nix

{ lib, config, inputs, ... }:
let
cfg = config.my.gaming;
in
{
imports = [
inputs.aagl.nixosModules.default
];
config = lib.mkIf cfg.enable {
programs.honkers-railway-launcher.enable = true;
programs.sleepy-launcher.enable = true;
};
}