darwin.builder: Fix gratuitous rebuilds
See the discussion starting here: https://github.com/NixOS/nixpkgs/pull/206951#issuecomment-1364760917 The `darwin.builder` derivation had a gratuitous dependency on the current Nixpkgs revision due to `config.system.nixos.revision`. Setting the revision explicitly to null fixes this problem and prevents the derivation from being rebuilt on every change to Nixpkgs.
This commit is contained in:
parent
bfb898bc7c
commit
474198f808
1 changed files with 6 additions and 1 deletions
|
@ -93,7 +93,12 @@ in
|
|||
};
|
||||
});
|
||||
|
||||
system.stateVersion = "22.05";
|
||||
system = {
|
||||
# To prevent gratuitous rebuilds on each change to Nixpkgs
|
||||
nixos.revision = null;
|
||||
|
||||
stateVersion = "22.05";
|
||||
};
|
||||
|
||||
users.users."${user}"= {
|
||||
isNormalUser = true;
|
||||
|
|
Loading…
Reference in a new issue