mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 04:39:23 +08:00
22 lines
438 B
Nix
22 lines
438 B
Nix
inputs:
|
|
{
|
|
config =
|
|
{
|
|
nixos =
|
|
{
|
|
system =
|
|
{
|
|
nixpkgs.march = "skylake";
|
|
network.settings =
|
|
{ static.eno2 = { ip = "192.168.178.2"; mask = 24; gateway = "192.168.178.1"; }; trust = [ "eno2" ]; };
|
|
fileSystems.swap = [ "/nix/swap/swap" ];
|
|
};
|
|
services =
|
|
{
|
|
beesd."/" = {};
|
|
lumericalLicenseManager.macAddress = "70:20:84:09:a3:52";
|
|
};
|
|
};
|
|
};
|
|
}
|