diff options
author | Alan Pearce | 2024-04-24 12:01:12 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-24 12:01:12 +0200 |
commit | 40ab775c0a63b9fc4ff84c6ae59ab00650b07ee3 (patch) | |
tree | fdf32f4cceee9f82fb56da0973213f3cc83204d1 /nix | |
parent | 2ff6d160fcc488418cadadfb998f07cb233105b5 (diff) | |
download | website-40ab775c0a63b9fc4ff84c6ae59ab00650b07ee3.tar.lz website-40ab775c0a63b9fc4ff84c6ae59ab00650b07ee3.tar.zst website-40ab775c0a63b9fc4ff84c6ae59ab00650b07ee3.zip |
nix: don't pollute nix store with per-commit builds with no changes
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix index a2a6ed4..ba9e751 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -1,6 +1,6 @@ { pkgs, self }: let - version = self.shortRev or self.dirtyShortRev or "unstable-${self.lastModified}"; + version = "unstable"; fullSHA = self.rev or self.dirtyRev; mkDocker = type: { server, website }: let |