1
0

Add host osmium

This commit is contained in:
2020-12-06 17:40:06 +01:00
parent 5641b06f7b
commit 53581b621a
2 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../configuration/common
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda";
networking.hostName = "osmium";
networking.useDHCP = false;
networking.interfaces.ens18.ipv4.addresses = [ { address = "192.168.10.29"; prefixLength = 24; } ];
networking.interfaces.ens19.ipv6.addresses = [ { address = "2001:638:904:ffc7::6"; prefixLength = 64; } ];
networking.defaultGateway = { address = "192.168.10.1"; interface = "ens18"; };
networking.defaultGateway6 = { address = "2001:638:904:ffc7::1"; interface = "ens19"; };
networking.nameservers = [ "141.24.40.4" ];
services.openssh.enable = true;
system.stateVersion = "21.03";
}