nix-configs/hosts/x86_64/shepard/configuration.nix
2024-01-31 08:00:36 -07:00

18 lines
353 B
Nix

{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "shepard";
## Enable 32 Bit libraries for applications like Steam
hardware.opengl.driSupport32Bit = true;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
environment.systemPackages =
with pkgs;
[
steam
];
}