18 lines
412 B
Nix
18 lines
412 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}: let
|
|
inherit (inputs) mysecrets;
|
|
inherit (config.networking) hostName;
|
|
in {
|
|
# imports = with inputs; [
|
|
# nixos-facter-modules.nixosModules.facter
|
|
# ];
|
|
hardware.facter.reportPath = "${mysecrets}/facter/${hostName}.json";
|
|
systemd.network.wait-online.enable = false;
|
|
networking.dhcpcd.enable = lib.mkForce false;
|
|
networking.networkmanager.dhcp = "internal";
|
|
}
|