nixos/modules/features/hsr.nix

10 lines
232 B
Nix
Raw Normal View History

{ inputs, ... }: {
2026-05-20 01:37:16 +00:00
flake.nixosModules.hsr = { config, pkgs, lib, ... }: {
imports = [ inputs.aagl.nixosModules.default ];
2026-05-20 01:37:16 +00:00
nix.settings = inputs.aagl.nixConfig;
programs.honkers-railway-launcher.enable = true;
};
}