blob: aebd9c347f035841ac1dd26f20f1a9f0674fe79b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# vim: ts=2
{lib, ...}: {
programs.steam = {
enable = true;
};
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-runtime"
"steam-run"
];
}
|