DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: e48b2517640d2f279cc0d3aea4ea47f79ac224fd nix-arta/ws/roles/gaming/lutris.nix -rw-r--r-- 217 bytes
e48b2517Jonni Liljamo feat: move arwen to ws and clenup orphan modules 9 days 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
    ];
  };
}