Iwakura/modules/gog-games/default.nix

11 lines
189 B
Nix
Raw Normal View History

2021-08-23 06:42:53 -04:00
{ pkgs, ... }: {
programs.java.enable = true;
environment.systemPackages = with pkgs; [
mono
(steam.override {
withJava = true;
nativeOnly = true;
}).run
];
}