12 lines
185 B
Nix
12 lines
185 B
Nix
{ pkgs, ... }: {
|
|
imports = [ ./steam.nix ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wineWowPackages.stable
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
multimc
|
|
lutris
|
|
];
|
|
}
|