nixos-config/config/host-config/zbox.nix

22 lines
388 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
system.stateVersion = "20.09";
2021-08-04 12:37:55 -07:00
# TODO: remove?
nixpkgs.config.permittedInsecurePackages = [
"openssh-with-gssapi-8.4p1" # CVE-2021-28041
];
fudo.slynk.enable = true;
2021-08-04 17:12:06 -07:00
environment.systemPackages = with pkgs; [ opencv-java ];
2021-08-04 12:37:55 -07:00
networking = {
interfaces = {
eno1.useDHCP = false;
intif0 = { useDHCP = true; };
};
};
}