20 lines
330 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
2021-04-01 17:22:11 +00:00
system.stateVersion = "20.09";
2021-03-31 23:28:42 +00:00
# TODO: remove?
nixpkgs.config.permittedInsecurePackages = [
"openssh-with-gssapi-8.4p1" # CVE-2021-28041
];
fudo.slynk.enable = true;
networking = {
2021-03-31 23:28:42 +00:00
interfaces = {
eno1.useDHCP = false;
intif0 = { useDHCP = true; };
};
};
}