From 28b14a9ce39450ad56400bd02035e5b92f86d482 Mon Sep 17 00:00:00 2001 From: Andre Date: Thu, 30 May 2024 18:02:54 -0400 Subject: [PATCH] Typos --- flake.lock | 2 +- modules/services/autoupgrade.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 9b117bc..ab3f108 100644 --- a/flake.lock +++ b/flake.lock @@ -252,7 +252,7 @@ "locked": { "lastModified": 1717092160, "narHash": "sha256-dype0zRMyP94Uo8YC1vWQ6lkvXLYMep6+Xo7AW4K9cs=", - "ref": "42ddf14d36d9fab1eb070f51fdf1991d1a21dde9", + "ref": "refs/heads/main", "rev": "42ddf14d36d9fab1eb070f51fdf1991d1a21dde9", "revCount": 42, "type": "git", diff --git a/modules/services/autoupgrade.nix b/modules/services/autoupgrade.nix index 51a4e41..fca180f 100644 --- a/modules/services/autoupgrade.nix +++ b/modules/services/autoupgrade.nix @@ -10,7 +10,7 @@ let cfg = config.host.services.autoUpgrade; # List of packages to include in each service's $PATH - pathPks = with pkgs; [ + pathPkgs = with pkgs; [ # Courtesy of https://discourse.nixos.org/t/how-to-use-other-packages-binary-in-systemd-service-configuration/14363 coreutils gnutar @@ -47,7 +47,7 @@ in }; path = pathPkgs; script = '' - cd ${config.secret.nixConfigFolder} + cd ${config.secrets.nixConfigFolder} # Check if there are changes from Git. # Since we're running this as root, we need to su into the user who owns the config folder. sudo -u aires git fetch