This commit is contained in:
Astro 2019-04-01 03:10:00 +02:00
부모 d6f156c017
커밋 60f57166c9
2개의 변경된 파일40개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -0,0 +1,39 @@
{ config, pkgs, lib, ... }:
{
imports =
[ ../../../lib/lxc-container.nix
../../../lib/shared.nix
];
networking.hostName = "dhcp";
networking.defaultGateway = "172.22.99.1";
networking.nameservers = [ "172.20.72.6" ];
networking.interfaces.eth0 = {
ipv4.addresses = [ {
address = "172.22.99.254";
prefixLength = 24;
} ];
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
];
# dhcp
networking.firewall.allowedUDPPorts = [ 67 68 ];
services.dhcpd4 = {
enable = true;
interfaces = [ "eth0" ];
extraConfig = builtins.readFile ../../../secrets/hosts/dhcp/config;
};
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "18.09"; # Did you read the comment?
}

@ -1 +1 @@
Subproject commit f43e472380ae045952c2f5c68d6da580f7b958d0
Subproject commit 01dcefd917931d4c6f729e05d5e5f76060cfebc9