mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 04:39:23 +08:00
20 lines
331 B
Nix
20 lines
331 B
Nix
inputs:
|
|
{
|
|
config =
|
|
{
|
|
nixos =
|
|
{
|
|
system =
|
|
{
|
|
nixpkgs.march = "broadwell";
|
|
network.settings =
|
|
{
|
|
static.eno2 = { ip = "192.168.178.2"; mask = 24; gateway = "192.168.178.1"; };
|
|
trust = [ "eno2" ];
|
|
};
|
|
};
|
|
services.beesd."/".threads = 4;
|
|
};
|
|
};
|
|
}
|