Files
nixos-blueprint/hosts/dunamis/hardware/facter.nix
2025-05-03 23:08:55 +03:00

15 lines
297 B
Nix

{
config,
inputs,
...
}: let
inherit (inputs) mysecrets;
inherit (config.networking) hostName;
in {
imports = with inputs; [
nixos-facter-modules.nixosModules.facter
];
facter.reportPath = "${mysecrets}/facter/${hostName}.json";
systemd.network.wait-online.enable = false;
}