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