diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2024-09-01 14:36:09 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2024-09-01 14:36:09 +0200 |
| commit | d2495d00ddce0ed8b2adb8df50616c80be5f896a (patch) | |
| tree | b277ad316f479ddc23d167009a23fe6bd65901a4 /nixos | |
| parent | 95632afe25cbaa9a3fb7a2f83f1d15f1eba20855 (diff) | |
use lib.mkAfter for lists
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/nix.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/nix.nix b/nixos/nix.nix index 5587491..48a8bed 100644 --- a/nixos/nix.nix +++ b/nixos/nix.nix @@ -1,4 +1,4 @@ -{...}: { +{lib, ...}: { personal.nix = { enable = true; autoUpgrade = { @@ -16,7 +16,7 @@ }; systemd.services.flake-update = { - preStart = '' + preStart = lib.mkAfter '' pushd /home/qaristote/code/nix/machines/precision-3571 git status popd |
