Pin nix version and fix nixos-option
This commit is contained in:
parent
fcdb9e3dbb
commit
43c28cb552
1 changed files with 4 additions and 1 deletions
5
base.nix
5
base.nix
|
@ -131,7 +131,7 @@
|
|||
};
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixVersions.latest;
|
||||
package = pkgs.nixVersions.nix_2_20;
|
||||
settings = {
|
||||
auto-optimise-store = true;
|
||||
tarball-ttl = 0;
|
||||
|
@ -144,6 +144,9 @@
|
|||
randomizedDelaySec = "30min";
|
||||
};
|
||||
};
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: { nixos-option = prev.nixos-option.override { nix = pkgs.nixVersions.nix_2_20; }; })
|
||||
];
|
||||
|
||||
# Define systemd template unit for reporting status via ntfy
|
||||
systemd.services =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue