@jaspermayone.com's dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add auto-update launchd daemon to dippet

+12
+12
hosts/dippet/default.nix
··· 5 5 # Disable nix-darwin's Nix management (using Determinate Nix installer) 6 6 nix.enable = false; 7 7 8 + # Auto-update from GitHub daily at 4am 9 + launchd.daemons.nix-darwin-upgrade = { 10 + script = '' 11 + /run/current-system/sw/bin/darwin-rebuild switch --flake github:jaspermayone/dots#dippet 12 + ''; 13 + serviceConfig = { 14 + StartCalendarInterval = [{ Hour = 4; Minute = 0; }]; 15 + StandardOutPath = "/var/log/nix-darwin-upgrade.log"; 16 + StandardErrorPath = "/var/log/nix-darwin-upgrade.log"; 17 + }; 18 + }; 19 + 8 20 # Agenix identity path (use user SSH key on macOS) 9 21 age.identityPaths = [ "/Users/jsp/.ssh/id_ed25519" ]; 10 22