DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 673b8774700fb1858b4cfa6be1d1a1cab6063461 nix-arta/roles/gaming/lutris.nix -rw-r--r-- 217 bytes
673b8774Jonni Liljamo chore(systems/hosts/proxy): remove old sourcequest entries 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  lib,
  pkgs,
  ...
}: let
  cfg = config.roles.gaming;
in {
  config = lib.mkIf cfg.lutris.enable {
    environment.systemPackages = with pkgs; [
      lutris

      wineWowPackages.stable
    ];
  };
}