Skip to content

Commit

Permalink
fix: reference dirtyRev for home-manager master ref
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarrio committed Sep 15, 2024
1 parent 21eecd1 commit b3ce8b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion darwin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@
};

# Set Git commit hash for darwin-version.
system.configurationRevision = self.rev || self.dirtyRev || null;
system.configurationRevision = self.dirtyRev || null; # TODO: Not compatible after moving to unstable
# system.configurationRevision = self.rev || self.dirtyRev || null;

# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
Expand Down

0 comments on commit b3ce8b6

Please sign in to comment.