nixos-conf/machine-confs/ntfy.nix

23 lines
434 B
Nix
Raw Normal View History

2024-09-06 20:10:45 +03:00
{ config, pkgs, ... }:
{
networking.hostName = "ntfy";
imports = [
../base.nix
../services/ntfy.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
2024-09-06 20:51:12 +03:00
# Make sure this service updates later than the rest, to capture any notifs from the others
system.autoUpgrade = {
dates = pkgs.lib.mkForce "05:00";
rebootWindow = pkgs.lib.mkForce {
lower = "04:30";
upper = "06:00";
};
};
2024-09-06 20:10:45 +03:00
}