about summary refs log blame commit diff stats
path: root/system/nixpkgs/default.nix
blob: 49c06444ab998d2e23801859df235140d2617066 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
           





                 
                                                                             



                                       
                       
        
    
# vim: ts=2
{
  lib,
  system,
  ...
}: {
  inherit system;
  config = {
    # TODO this fails because of the root tempsize, which should be increased
    #contentAddressedByDefault = true;

    allowUnfreePredicate = pkg:
      builtins.elem (lib.getName pkg) [
        "steam"
        "steam-original"
        "steam-runtime"
        "steam-run"
      ];
  };
}