add some variables to heimdall

This commit is contained in:
Andreas Zweili 2022-01-12 21:57:38 +01:00
parent 3457f06997
commit a08fcda3b4
1 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,8 @@
{ ... }:
let
hostname = "heimdall";
ip = "10.7.89.121";
in
{
boot.initrd.availableKernelModules = [
"ata_piix"
@ -20,22 +24,18 @@
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
fileSystems."/mnt/data" = {
device = "10.7.89.108:raspi_data";
fsType = "nfs";
};
networking = {
hostName = "heimdall";
hostName = hostname;
hosts = {
"127.0.0.1" = [ "heimdall.2li.local" ];
"10.7.89.121" = [ "heimdall.2li.local" ];
"127.0.0.1" = [ "${hostname}.2li.local" ];
ip = [ "${hostname}.2li.local" ];
};
defaultGateway = "10.7.89.1";
nameservers = [ "10.7.89.2" ];
nameservers = [ ip ];
interfaces.ens18.ipv4.addresses = [
{
address = "10.7.89.121";
address = ip;
prefixLength = 24;
}
];