forked from emily/nixfiles
30 lines
548 B
Nix
30 lines
548 B
Nix
|
{ config, lib, pkgs, ... }: {
|
||
|
imports = [
|
||
|
../../common
|
||
|
../../profiles/builder.nix
|
||
|
../../profiles/headless.nix
|
||
|
./hardware-configuration.nix
|
||
|
./disko.nix
|
||
|
];
|
||
|
|
||
|
boot.loader = {
|
||
|
systemd-boot.enable = true;
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
};
|
||
|
|
||
|
kyouma.machine-type.physical = true;
|
||
|
|
||
|
networking = {
|
||
|
hostName = "integra";
|
||
|
useDHCP = false;
|
||
|
};
|
||
|
|
||
|
systemd.network.networks."98-eth-default" = {
|
||
|
matchConfig.Type = "ether";
|
||
|
matchConfig.Name = "e*";
|
||
|
networkConfig = {
|
||
|
DHCP = "yes";
|
||
|
};
|
||
|
};
|
||
|
}
|