add steam
This commit is contained in:
parent
f54f75590e
commit
c690e209e5
1 changed files with 15 additions and 13 deletions
|
@ -1,11 +1,4 @@
|
||||||
{
|
{ config, pkgs, inputs, lib, nixpkgs-nixos-unstable-and-unfree, ... }: {
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
nixpkgs-nixos-unstable-and-unfree,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
networking.hostName = "foureighty";
|
networking.hostName = "foureighty";
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -66,6 +59,15 @@
|
||||||
};
|
};
|
||||||
services.fprintd = { enable = true; };
|
services.fprintd = { enable = true; };
|
||||||
programs.ccache.enable = true;
|
programs.ccache.enable = true;
|
||||||
|
hardware.opengl.extraPackages = with pkgs; [ libva ];
|
||||||
|
programs.steam.enable = true;
|
||||||
|
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||||
|
builtins.elem (lib.getName pkg) [
|
||||||
|
"steam"
|
||||||
|
"steam-original"
|
||||||
|
"steam-runtime"
|
||||||
|
"steam-run"
|
||||||
|
];
|
||||||
|
|
||||||
home-manager.users.cyryl = { ... }: {
|
home-manager.users.cyryl = { ... }: {
|
||||||
imports = [ ../../home-manager/programs/alacritty.nix ];
|
imports = [ ../../home-manager/programs/alacritty.nix ];
|
||||||
|
|
Loading…
Reference in a new issue