13 lines
145 B
Nix
13 lines
145 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./steam.nix
|
|
];
|
|
users.users.makefu.packages = with pkgs; [
|
|
games-user-env
|
|
wine
|
|
pkg2zip
|
|
];
|
|
}
|