summaryrefslogtreecommitdiff
path: root/config/auto-upgrade.nix
blob: ad8de9a8b8af6b2bf09b32916a263c8958e21f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, pkgs, ... }:
{
  system.autoUpgrade = {
    enable = true;
    dates = "weekly";
    flake =
      if config.networking.hostName == "dragon" then
        "git+file:///storage/projects/nixos-config.git"
      else
        "git+https://git.orbekk.com/nixos-config.git";
  };
}