1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/integra/configuration.nix

31 lines
634 B
Nix
Raw Normal View History

2024-06-12 15:00:55 +02:00
{ ... }: {
2024-04-29 15:22:48 +02:00
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";
2024-04-29 15:22:48 +02:00
nix.sshServe.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOOWlYhnummuWZbq3+d0x5A67YvlPvtl7/1Dk4RtNlzf christina@cafkafk.com"
];
2024-04-29 15:22:48 +02:00
systemd.network.networks."98-eth-default" = {
matchConfig.Type = "ether";
matchConfig.Name = "e*";
networkConfig = {
DHCP = "yes";
};
};
}