nixos/modules/features/hsr.nix
2026-05-19 22:25:43 +00:00

9 lines
219 B
Nix

{ inputs, ... }: {
flakes.nixosModules.hsr = { config, lib, aagl, ... }: {
imports = [ aagl.nixosModules.default ];
nix.settings = aagl.nixConfig;
programs.honkers-railway-launcher.enable = true;
};
}