cray: Install steam
This commit is contained in:
parent
1c0fad592c
commit
d8f7b8bbc2
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
{ sources ? import ../../nix
|
{ sources ? import ../../nix
|
||||||
, pkgs ? sources.pkgs { }
|
, pkgs ? sources.pkgs { }
|
||||||
|
, lib
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -22,8 +23,6 @@ in
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||||
|
|
||||||
nix.useSandbox = false;
|
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = false;
|
boot.loader.systemd-boot.enable = false;
|
||||||
boot.loader.grub = {
|
boot.loader.grub = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -62,6 +61,12 @@ in
|
||||||
services.printing.drivers = with pkgs; [ splix ];
|
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:
|
# List packages installed in system profile. To search, run:
|
||||||
environment.systemPackages = with pkgs; [ vim wget curl git ];
|
environment.systemPackages = with pkgs; [ vim wget curl git ];
|
||||||
|
|
Loading…
Reference in a new issue