Files
nixos-blueprint/hosts/sarien/facter/default.nix
unexplrd 5fe09a598a hosts/sarien: split up
modules/stylix: change wallpaper

Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-05-03 22:09:18 +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;
}