nixos-config/config/hosts/spark.nix

17 lines
266 B
Nix
Raw Normal View History

2021-04-02 14:08:31 -07:00
{ config, lib, pkgs, ... }:
{
# TODO: remove?
nixpkgs.config.permittedInsecurePackages = [
"openssh-with-gssapi-8.4p1" # CVE-2021-28041
];
fudo.slynk.enable = true;
networking = {
interfaces = {
extif0 = { useDHCP = true; };
};
};
}