nixos-config/system/starlight/default.nix

32 lines
527 B
Nix
Raw Normal View History

2020-08-15 03:27:08 +00:00
{ config, pkgs, ... }:
{
2020-08-17 21:37:22 +00:00
imports = [
./boot-config.nix
./hardware-configuration.nix
../../services/ssh.nix
../../private/starlight.nix
];
2020-08-15 03:27:08 +00:00
networking.hostName = "starlight";
hardware.cpu.amd.updateMicrocode = true;
services = {
tor = {
enable = true;
client.enable = true;
};
};
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2020-08-15 03:27:08 +00:00
environment.systemPackages = with pkgs; [
steam
gnome3.zenity
SDL2 SDL2_ttf SDL2_image
];
system.stateVersion = "19.09";
}