nixos-config/system/starlight/default.nix

39 lines
748 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
2020-11-01 20:27:07 +00:00
../../sets/fpga.nix
2020-08-17 21:37:22 +00:00
../../private/starlight.nix
];
2020-08-15 03:27:08 +00:00
networking.hostName = "starlight";
2020-10-21 21:04:01 +00:00
services.udev.extraRules = ''
KERNEL=="eth*", ATTR{address}=="00:0f:53:16:15:9c", NAME="lan10g0"
KERNEL=="eth*", ATTR{address}=="00:0f:53:16:15:9d", NAME="lan10g1"
'';
2020-08-15 03:27:08 +00:00
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; [
2020-10-21 21:04:01 +00:00
weechat
2020-08-15 03:27:08 +00:00
steam
gnome3.zenity
SDL2 SDL2_ttf SDL2_image
];
system.stateVersion = "19.09";
}