13 lines
125 B
Nix
13 lines
125 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./steam.nix
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
heroic
|
||
|
wine
|
||
|
];
|
||
|
}
|