14 lines
324 B
Nix
14 lines
324 B
Nix
{ pkgs, ... }:
|
|
let
|
|
aagl-gtk-on-nix = import (builtins.fetchTarball {
|
|
url = "https://github.com/ezKEa/aagl-gtk-on-nix/archive/main.tar.gz";
|
|
sha256 = "03q5cbvjg6dvf2d40mfpjddkyambpjcvfpfbv2m2bhsyc869w80j";
|
|
});
|
|
in
|
|
{
|
|
imports = [
|
|
aagl-gtk-on-nix.module
|
|
];
|
|
|
|
programs.honkers-railway-launcher.enable = true;
|
|
}
|