nixos/modules/features/hsr.nix

10 lines
219 B
Nix
Raw Normal View History

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