18 lines
232 B
Nix
18 lines
232 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./steam
|
|
./lutris
|
|
# ./bottles
|
|
./gamemode
|
|
./gamescope
|
|
./corectrl
|
|
];
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
# Misc
|
|
protonup
|
|
winetricks
|
|
];
|
|
};
|
|
}
|