mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 05:20:42 +08:00
22 lines
451 B
Nix
22 lines
451 B
Nix
inputs:
|
|
{
|
|
config =
|
|
{
|
|
nixos =
|
|
{
|
|
system =
|
|
{
|
|
nixpkgs.march = "icelake-server";
|
|
network.settings =
|
|
{ static.eno8303 = { ip = "192.168.178.3"; mask = 24; gateway = "192.168.178.1"; }; trust = [ "eno8303" ]; };
|
|
fileSystems.swap = [ "/nix/swap/swap" ];
|
|
};
|
|
services =
|
|
{
|
|
beesd."/" = {};
|
|
lumericalLicenseManager.macAddress = "b4:e9:b8:fc:9a:f9";
|
|
};
|
|
};
|
|
};
|
|
}
|