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 | |
| parent | 95632afe25cbaa9a3fb7a2f83f1d15f1eba20855 (diff) | |
use lib.mkAfter for lists
| -rw-r--r-- | flake.lock | 6 | ||||
| -rw-r--r-- | nixos/nix.nix | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -246,11 +246,11 @@ "nur": "nur" }, "locked": { - "lastModified": 1725095423, - "narHash": "sha256-R0u9zDDBi5R9DUBBjN0Emx1UcC7u8SmCTREA957YUgc=", + "lastModified": 1725193220, + "narHash": "sha256-2sB1UcTDyZwFDSaNz2fNEjpesOWvPVojiatu+1BeTxA=", "owner": "qaristote", "repo": "my-nixpkgs", - "rev": "7f10ee5b60b04b926d8f6ea8593cda3c140016d1", + "rev": "1e6e1650e8f54f8e301dfa1460a205b24794e03f", "type": "github" }, "original": { 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 |
