mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-13 11:43:01 -06:00
18 lines
353 B
Nix
18 lines
353 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Name your host machine
|
|
networking.hostName = "shepard";
|
|
|
|
# Enable binfmt emulation of aarch64-linux.
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
|
|
# Allow Unfree
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages =
|
|
with pkgs;
|
|
[
|
|
steam
|
|
];
|
|
}
|