nix-configs/systems/x86_64/shepard/configuration.nix
2023-10-31 23:29:29 +00: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
];
}