flake: do not throw on dirty tree

This is mostly inconvenient, I have enough discipline not to need it
anymore.
This commit is contained in:
Bruno BELANYI 2021-04-25 11:40:30 +00:00
parent 49232423ca
commit 9612258118
1 changed files with 1 additions and 4 deletions

View File

@ -19,10 +19,7 @@
defaultModules = [
({ ... }: {
# Let 'nixos-version --json' know about the Git revision
system.configurationRevision =
if self ? rev
then self.rev
else throw "Refusing to build from a dirty Git tree!";
system.configurationRevision = self.rev or "dirty";
})
{
nixpkgs.overlays = (lib.attrValues self.overlays) ++ [