nixos/modules/features/hsr.nix
KnightArtorias 5a27bcf255 It builds
2026-05-20 01:37:16 +00:00

9 lines
232 B
Nix

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