Iwakura/modules/gog-games/default.nix
2021-08-23 10:42:53 +00:00

11 lines
189 B
Nix

{ pkgs, ... }: {
programs.java.enable = true;
environment.systemPackages = with pkgs; [
mono
(steam.override {
withJava = true;
nativeOnly = true;
}).run
];
}