cray: Install steam

This commit is contained in:
fleaz 2022-03-03 00:29:46 +01:00
parent 1c0fad592c
commit d8f7b8bbc2

View file

@ -4,6 +4,7 @@
{ sources ? import ../../nix
, pkgs ? sources.pkgs { }
, lib
, ...
}:
@ -22,8 +23,6 @@ in
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
nix.useSandbox = false;
boot.loader.systemd-boot.enable = false;
boot.loader.grub = {
enable = true;
@ -62,6 +61,12 @@ in
services.printing.drivers = with pkgs; [ splix ];
programs.steam.enable = true;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-runtime"
];
# List packages installed in system profile. To search, run:
environment.systemPackages = with pkgs; [ vim wget curl git ];