This commit is contained in:
KnightArtorias 2026-02-13 22:51:41 +00:00
parent 064b859396
commit 956cedf180
2 changed files with 12 additions and 0 deletions

View file

@ -4,5 +4,6 @@
./pwvucontrol.nix ./pwvucontrol.nix
./wine.nix ./wine.nix
./virt-manager.nix ./virt-manager.nix
./hsr.nix
]; ];
} }

View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
let
aagl-gtk-on-nix = import (builtins.fetchTarball "https://github.com/ezKEa/aagl-gtk-on-nix/archive/main.tar.gz");
in
{
imports = [
aagl-gtk-on-nix.module
];
programs.the-honkers-railway-launcher.enable = true;
}