nix-configs/hosts/x86_64/shepard/configuration.nix
2024-03-17 23:59:23 +00:00

23 lines
472 B
Nix

{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "shepard";
hardware.opengl = {
extraPackages = with pkgs; [ libvdpau-va-gl ];
driSupport32Bit = true;
};
# Enable binfmt emulation of aarch64-linux.
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
# Allow Unfree
nixpkgs.config.allowUnfree = true;
environment.systemPackages =
with pkgs;
[
steam
];
}