10 lines
219 B
Nix
10 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;
|
||
|
|
};
|
||
|
|
}
|