nixos-config/config/hosts/zbox.nix

18 lines
294 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
2021-03-31 16:28:42 -07:00
# TODO: remove?
nixpkgs.config.permittedInsecurePackages = [
"openssh-with-gssapi-8.4p1" # CVE-2021-28041
];
fudo.slynk.enable = true;
networking = {
2021-03-31 16:28:42 -07:00
interfaces = {
eno1.useDHCP = false;
intif0 = { useDHCP = true; };
};
};
}