mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-13 03:33:00 -06:00
20 lines
368 B
Nix
20 lines
368 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Name your host machine
|
|
networking.hostName = "shepard";
|
|
|
|
hardware.opengl = {
|
|
extraPackages = with pkgs; [ libvdpau-va-gl ];
|
|
driSupport32Bit = true;
|
|
};
|
|
|
|
# Allow Unfree
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages =
|
|
with pkgs;
|
|
[
|
|
steam
|
|
];
|
|
}
|