First Commit

This commit is contained in:
2026-01-05 04:04:36 +01:00
commit c7a17f7772
83 changed files with 3574 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ 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;
};
}