20 lines
330 B
Nix
20 lines
330 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
system.stateVersion = "20.09";
|
|
|
|
# TODO: remove?
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"openssh-with-gssapi-8.4p1" # CVE-2021-28041
|
|
];
|
|
|
|
fudo.slynk.enable = true;
|
|
|
|
networking = {
|
|
interfaces = {
|
|
eno1.useDHCP = false;
|
|
intif0 = { useDHCP = true; };
|
|
};
|
|
};
|
|
}
|