nixos/nixos/roles/physical/desktop/common/apps/hsr.nix
KnightArtorias b5b5d22f4a Lutris
2026-05-12 23:23:29 +00:00

19 lines
495 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 = "0bb1pc1vijcs2sfcrlrhj6c117kcny2b95y30zhlvpg4n37yyviw";
});
in
{
nix.settings = {
substituters = [ "https://ezkea.cachix.org" ];
trusted-public-keys = [ "ezkea.cachix.org-1:ioBmUbJTZIKsHmWWXPe1FSFbeVe+afhfgqgTSNd34eI=" ];
};
imports = [
aagl-gtk-on-nix.module
];
programs.honkers-railway-launcher.enable = true;
}