nixos-config/config/games/default.nix

15 lines
292 B
Nix
Raw Normal View History

2022-03-05 20:06:59 +00:00
{ system, nix-gaming, ... } @ args: { pkgs, ... }:
let
2022-03-05 20:06:59 +00:00
wine-tkg = nix-gaming.outputs.packages.${system}.wine-tkg;
2022-01-22 19:31:38 +00:00
in
{
2022-03-05 19:16:12 +00:00
imports = [
2022-03-05 20:06:59 +00:00
(import ./grapejuice.nix args)
2022-03-05 19:16:12 +00:00
];
2022-01-22 19:31:38 +00:00
home.packages = [
wine-tkg
2022-01-22 20:06:20 +00:00
pkgs.polymc
pkgs.factorio # downloaded from an internal cache server
2022-01-22 19:31:38 +00:00
];
}