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